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
这里的问题在哪里?
答案 0 :(得分:1)
您正尝试在Python 3.x中使用Python 2.x语法。
在Python 3.x中,print
不再是声明。相反,它是converted into function,因此现在必须像一个一样调用:
>>> print("hi") # Note the parenthesis
hi
>>>