1、旧版本和新版本区别
python2.0是过去的遗产;
python3.0是未来使用的。 (去繁从简)
2、语法区别
python2.0 print "hello" python3.0 print ("hello")
www#gaodaima.com来源gaodai#ma#com搞*代#码网搞代码
3、编码不同
python2.0 不能直接写中文;必须先声明utf-8 如:#-*- coding:utf-8 -*-
python3.0 可以直接写中文,默认是unicode支持中文;不再烦恼字符编码问题。
4、某些库名字更改了
更多Python知识,请关注:搞代码网!!
来源:搞代码网:原文地址:https://www.gaodaima.com