您的位置:首页 > 编程语言 > Python开发

python print'hello' File "<stdin>",line 1 print 'hello' SyntaxError:invalid syntax

2016-09-02 10:36 726 查看
python print'hello' File"<stdin>",line 1 print 'hello'SyntaxError:invalid syntax
刚开始看Python,照着书上些了个hello,结果错误:

>>> print'hello'

  File "<stdin>",line 1

    print'hello'

               ^

SyntaxError: invalid syntax

 

查看3.0文档:http://docs.python.org/release/3.0.1/whatsnew/3.0.html,发现从3.0开始print改成了

print()。文档是这样写的:The print statement has been replacedwith a

print()function, with keyword arguments to replace most of the specialsyntax of the old
print statement (PEP3105).

print语句被print()方法代替,旧print语句中的特定的语法被参数代替。

所以呢,hello world!应该写成这样:print ("hello world!")
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: