>>> print 'hello world'
SyntaxError: invalid syntax

在3.3.2版本中print函数改了用法,改为print ('hello world')了。

>>> print ('hello world')
hello world