標籤:
Python2.4+ 與 Python3.0+ 主要變化或新增內容
Python2 Python3
print是內建命令 print變為函數
print >> f,x,y print(x,y,file=f)
print x, print(x,end=‘‘)
reload(M) imp.reload(M)
apply(f, ps, ks) f(*ps, **ks)
x <> y x != y
long int
1234L 1234
d.has_key(k) k in d 或 d.get(k) != None (has_key已死, in永生!!)
raw_input() input()
input() eval(input())
xrange(a,b) range(a,b)
file() open()
x.next() x.__next__() 且由next()方法調用
x.__getslice__() x.__getitem__()
x.__setsilce__() x.__setitem__()
__cmp__() 刪除了__cmp__(),改用__lt__(),__gt__(),__eq__()等
reduce() functools.reduce()
exefile(filename) exec(open(filename).read())
0567 0o567 (八進位)
新增nonlocal關鍵字
str用於Unicode文本,bytes用於二進位文本
新的迭代器方法range,map,zip等
新增集合解析與字典解析
u‘unicodestr‘ ‘unicodestr‘
raise E,V raise E(V)
except E , x: except E as x:
file.xreadlines for line in file: (or X = iter(file))
d.keys(),d.items(),etc list(d.keys()),list(d.items()),
list(etc)
map(),zip(),etc list(map()),list(zip()),list(etc)
x=d.keys(); x.sort() sorted(d)
x.__nonzero__() x.__bool__()
x.__hex__,x.__bin__ x.__index__
types.ListType list
__metaclass__ = M class C(metaclass = M):
__builtin__ builtins
sys.exc_type,etc sys.exc_info()[0],sys.exc_info()[1],...
function.func_code function.__code__
增加Keyword-One參數
增加Ellipse對象
簡化了super()方法文法
用過-t,-tt控制縮排 混用空格與定位字元視為錯誤
from M import *可以 只能出現在檔案的頂層
出現在任何位置.
class MyException: class MyException(Exception):
thread,Queue模組 改名_thread,queue
cPickle,SocketServer模組 改名_pickle,socketserver
ConfigSparser模組 改名configsparser
Tkinter模組 改名tkinter
其他模組整合到了如http模組,urllib, urllib2模組等
os.popen subprocess.Popen
基於字串的異常 基於類的異常
新增類的property機制(類特性)
未Binder 方法 都是函數
混合類型可比較排序 非數字混合類型比較發生錯誤
/是傳統除法 取消了傳統除法, /變為真除法
無函數註解 有函數註解 def f(a:100, b:str)->int 使用通過f.__annotation__
新增環境管理器with/as
Python3.1支援多個環境管理器項 with A() as a, B() as b
擴充的序列解包 a, *b = seq
統一所有類為新式類
增強__slot__類屬性
if X: 優先X.__len__() 優先X.__bool__()
type(I)區分類和類型 不再區分(不再區分新式類與經典類,同時擴充了元類)
靜態方法需要self參數 靜態方法根據聲明直接使用
無異常鏈 有異常鏈 raise exception from other_exception
Python 2.x 與 Python3.x 主要區別對照表