原来的代码
Python 3.3.5 (v3.3.5:62cf4e77f785, Mar 9 2014, 10:37:12) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.SyntaxError: invalid syntax
修改后的代码
>>> print ('hello world')
hello world
>>> print (5)
5
>>> print ("5")
5
加上() 后没问题,python 第一步