3.0以后的print都改为了print();
>>> print 'hello'
SyntaxError: invalid syntax
>>> print ('hello')
hello
>>> print(2*8)
16
3.0以后的print都改为了print();
>>> print 'hello'
SyntaxError: invalid syntax
>>> print ('hello')
hello
>>> print(2*8)
16