1.性能
- Py3.0運(yùn)行
pystone benchmark
的速度比Py2.5慢30%田绑。 - Guido認(rèn)為Py3.0有極大的優(yōu)化空間楞遏,在字符串和整形操作上可 以取得很好的優(yōu)化結(jié)果。
- Py3.1性能比Py2.5慢15%扶镀,還有很大的提升空間。
2.編碼
- Py3.X源碼文件默認(rèn)使用
utf-8
編碼,這就使得以下代碼是合法的:
>>> 中國 = 'china'
>>>print(中國)
china
3. 語法
- 去除了
<>
硬毕,全部改用!=
- 去除了
- 去除
``
,全部改用repr()
- 去除
- 關(guān)鍵詞加入
as
和with
礼仗,還有True
,False
,None
- 關(guān)鍵詞加入
- 整型除法返回浮點(diǎn)數(shù)吐咳,要得到整型結(jié)果,請使用
//
- 整型除法返回浮點(diǎn)數(shù)吐咳,要得到整型結(jié)果,請使用
- 加入
nonlocal
語句元践。使用noclocal x
可以直接指派外圍(非全局)變量
- 加入
- 去除
print
語句韭脊,加入print()
函數(shù)實(shí)現(xiàn)相同的功能。
同樣的還有exec
語句单旁,已經(jīng)改為exec()
函數(shù)
例如:
- 去除
2.X: print "The answer is", 2*2
3.X: print("The answer is", 2*2)
2.X: print x, # 使用逗號結(jié)尾禁止換行
3.X: print(x, end=" ") # 使用空格代替換行
2.X: print # 輸出新行
3.X: print() # 輸出新行
2.X: print >>sys.stderr, "fatal error"
3.X: print("fatal error", file=sys.stderr)
2.X: print (x, y) # 輸出repr((x, y))
3.X: print((x, y)) # 不同于print(x, y)!
- 改變了順序操作符的行為
例如:
x<y沪羔,當(dāng)x和y類型不匹配時拋出TypeError
而不是返回隨即的bool
值
- 改變了順序操作符的行為
- 輸入函數(shù)改變了,刪除了
raw_input
象浑,用input
代替:
- 輸入函數(shù)改變了,刪除了
2.X:guess = int(raw_input('Enter an integer : ')) # 讀取鍵盤輸入的方法
3.X:guess = int(input('Enter an integer : '))
- 去除元組參數(shù)解包蔫饰。
不能def(a, (b, c)):pass
這樣定義函數(shù)了
- 去除元組參數(shù)解包蔫饰。
- 新式的8進(jìn)制字變量琅豆,相應(yīng)地修改了
oct()
函數(shù)。
2.X的方式如下:
- 新式的8進(jìn)制字變量琅豆,相應(yīng)地修改了
>>> 0666
438
>>> oct(438)
'0666'
???????????3.X這樣:
>>> 0666
SyntaxError: invalid token (<pyshell#63>, line 1)
>>> 0o666
438
>>> oct(438)
'0o666'
- 增加了 2進(jìn)制字面量和
bin()
函數(shù)
- 增加了 2進(jìn)制字面量和
>>> bin(438)
'0b110110110'
>>> _438 = '0b110110110'
>>> _438
'0b110110110'
- 擴(kuò)展的可迭代解包篓吁。
在Py3.X 里茫因,a, b, *rest = seq
和*rest, a = seq
都是合法的,
只要求兩點(diǎn):rest
是list
對象和seq
是可迭代的杖剪。
- 擴(kuò)展的可迭代解包篓吁。
- 新的
super()
冻押,可以不再給super()
傳參數(shù),
- 新的
>>> class C(object):
def __init__(self, a):
print('C', a)
>>> class D(C):
def __init(self, a):
super().__init__(a) # 無參數(shù)調(diào)用super()
>>> D(8)
C 8
<__main__.D object at 0x00D7ED90>
- 新的
metaclass
語法:
- 新的
class Foo(*bases, **kwds):
pass
- 支持
class decorator
摘盆。
用法與函數(shù)decorator
一樣:
- 支持
>>> def foo(cls_a):
def print_func(self):
print('Hello, world!')
cls_a.print = print_func
return cls_a
>>> @foo
class C(object):
pass
>>> C().print()
Hello, world!
class decorator
可以用來玩玩貍貓換太子的把戲翼雀。
4. 字符串和字節(jié)串
- 現(xiàn)在字符串只有
str
一種類型,但它跟2.x版本的unicode
幾乎一樣孩擂。
- 現(xiàn)在字符串只有
- 關(guān)于字節(jié)串狼渊,請參閱“數(shù)據(jù)類型”的第2條目
5.數(shù)據(jù)類型
- Py3.X去除了
long
類型,現(xiàn)在只有一種整型——int
类垦,但它的行為就像2.X版本的long
- Py3.X去除了
- 新增了
bytes
類型狈邑,對應(yīng)于2.X版本的八位串,定義一個bytes
字面量的方法如下:
- 新增了
>>> b = b'china'
>>> type(b)
<type 'bytes'>
str
對象和bytes
對象可以使用.encode() (str -> bytes)
or.decode() (bytes -> str)
方法相互轉(zhuǎn)化蚤认。
>>> s = b.decode()
>>> s
'china'
>>> b1 = s.encode()
>>> b1
b'china'
-
dict
的.keys()
米苹、.items
和.values()
方法返回迭代器,而之前的iterkeys()
等函數(shù)都被廢棄砰琢。同時去掉的還有dict.has_key()
蘸嘶,用in
替代它吧
-
6.面向?qū)ο?/strong>
1)引入抽象基類(Abstraact Base Classes,ABCs)陪汽。
2)容器類和迭代器類被ABCs化训唱,所以cellections
模塊里的類型比Py2.5多了很多。
>>> import collections
>>> print('\n'.join(dir(collections)))
Callable
Container
Hashable
ItemsView
Iterable
Iterator
KeysView
Mapping
MappingView
MutableMapping
MutableSequence
MutableSet
NamedTuple
Sequence
Set
Sized
ValuesView
__all__
__builtins__
__doc__
__file__
__name__
_abcoll
_itemgetter
_sys
defaultdict
deque
另外挚冤,數(shù)值類型也被ABCs化况增。
- 迭代器的
next()
方法改名為__next__()
,并增加內(nèi)置函數(shù)next()
训挡,用以調(diào)用迭代器的next()方法
- 迭代器的
- 增加了
@abstractmethod
和@abstractproperty
兩個decorator
澳骤,編寫抽象方法(屬性)更加方便。
- 增加了
7.異常
- 所以異常都從
BaseException
繼承澜薄,并刪除了StardardError
- 所以異常都從
- 去除了異常類的序列行為和
.message
屬性
- 去除了異常類的序列行為和
- 用
raise Exception(args)
代替raise Exception, args
語法
- 用
- 捕獲異常的語法改變为肮,
引入了as
關(guān)鍵字來標(biāo)識異常實(shí)例。
- 捕獲異常的語法改變为肮,
在Py2.5中:
>>> try:
... raise NotImplementedError('Error')
... except NotImplementedError, error:
... print error.message
...
Error
在Py3.0中:
>>> try:
raise NotImplementedError('Error')
except NotImplementedError as error: #注意這個 as
print(str(error))
Error
- 異常鏈肤京,因?yàn)?code>__context__在3.0a1版本中沒有實(shí)現(xiàn)
8.模塊變動
- 移除了
cPickle
模塊弥锄,可以使用pickle
模塊代替。最終我們將會有一個透明高效的模塊。
- 移除了
- 移除了
imageop
模塊
- 移除了
- 移除了
audiodev
,Bastion
,bsddb185
,exceptions
,linuxaudiodev
,md5
,MimeWriter
,mimify
,popen2
,rexec
,sets
,sha
,stringold
,strop
,sunaudiodev
,timing
和xmllib
模塊
- 移除了
- 4.移除了
bsddb
模塊(單獨(dú)發(fā)布籽暇,可以從http://www.jcea.es/programacion/pybsddb.htm獲取) - 5.移除了
new
模塊 - 6.
os.tmpnam()
和os.tmpfile()
函數(shù)被移動到tmpfile
模塊下 -
tokenize
模塊現(xiàn)在使用bytes
工作。主要的入口點(diǎn)不再是generate_tokens
饭庞,而是tokenize.tokenize()
-
9.其它
-
xrange()
改名為range()
戒悠,要想使用range()
獲得一個list
,必須顯式調(diào)用:
-
>>> list(range(10))
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
-
bytes
對象不能hash
舟山,也不支持b.lower()
绸狐、b.strip()
和b.split()
方法,但對于后兩者可以使用b.strip(b’ \n\t\r \f’)
和b.split(b’ ‘)
來達(dá)到相同目的
-
-
zip()
累盗、map()
和filter()
都返回迭代器寒矿。而apply()
、callable()
若债、coerce()
符相、execfile()
、reduce()
和reload ()
函數(shù)都被去除了
現(xiàn)在可以使用hasattr()
來替換callable(). hasattr()
的語法如:hasattr(string, '__name__')
-
-
string.letters
和相關(guān)的.lowercase
和.uppercase
被去除蠢琳,請改用string.ascii_letters
等
-
- 如果
x < y
的不能比較啊终,拋出TypeError
異常。2.x版本是返回偽隨機(jī)布爾值的
- 如果
-
__getslice__
系列成員被廢棄傲须。a[i:j]
根據(jù)上下文轉(zhuǎn)換為a.__getitem__(slice(I, j))
或__setitem__
和__delitem__
調(diào)用
-
-
file
類被廢棄
-
在Py2.5中:
>>> file
<type 'file'>
在Py3.X中:
>>> file
Traceback (most recent call last):
File "<pyshell#120>", line 1, in <module>
file
NameError: name 'file' is not defined