执行python程序时命令行中出现语法错误

时间:2013-09-19 09:14:10

标签: python

我刚开始使用python3.3。 shell看起来像这样:

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:06:53) [MSC v.1600 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print ("hello world")

它打印hello world correclty,但是在命令行中它显示第1行中的错误(即Python 3.3.2(v3.3.2:d047928ae3f6,2013年5月16日,00:06:53)[MSC v.1600 64 bit (AMD64)]在win32上将其声明为语法错误。

问题是什么?

2 个答案:

答案 0 :(得分:1)

您在命令行上错误地指定了语法。正确的语法是:

$ python3 -c 'print ("hello world")'

答案 1 :(得分:0)

这不是错误。这就是当您通过键入$ python3打开交互式解释器时出现的内容,告诉您您拥有的python版本以及其他详细信息(例如日期)。