python3的print注意事项

个人感觉python3想对于python2变化太大了,就连print都变得奇怪了。
先列出几点:
1、py文件开头加上:from future import print_function
2、print(“kobe”),而不是python2的print “kobe”