IDLE GUI无法提供输出

时间:2014-06-17 21:27:54

标签: python python-3.x python-idle

Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 10:45:13) [MSC v.1600 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print "Harshit"
SyntaxError: invalid syntax

这里的问题在哪里?

1 个答案:

答案 0 :(得分:1)

您正尝试在Python 3.x中使用Python 2.x语法。

在Python 3.x中,print不再是声明。相反,它是converted into function,因此现在必须像一个一样调用:

>>> print("hi")  # Note the parenthesis
hi
>>>