1,python2:默认编码是ascii
python3:默认编码是utf-8
2,python2:有long int类型
python3:无long int类型
3,python:print “abc” 可以用空格或括号
python:print(“abc”) 只能用括号