Python3和Python2的区别 新增: 1.python2默认是不支持中文的须在代码的最前面写注释让它支持中文#coding:utf-8,Python3默认是支持中文的 2.Python2支持print “hello”,Python3支持print(“hello”) 3.Input的区别