【根據廖雪峰python教程整理】
使用__future__
python的每個新版本都會增加一些新的功能,或者對原來的功能作一些改動。有些改動是不相容舊版本的,也就是在當前版本執行正常的**,到下乙個版本執行就可能不正常了。
從python 2.7
到python 3.x
就有不相容的一些改動,比如
2.x裡的字串用
'***'
表示str
,unicode
字串用
u'***'
表示unicode
,而在3.x
中,所有字串都被視為
unicode
,因此,寫
u'***'
和'***'
是完全一致的,而在
2.x中以
'***'
表示的str
就必須寫成
b'***'
,以此表示「二進位制字串」。
要直接把**公升級到3.x
是比較冒進的,因為有大量的改動需要測試。相反,可以在
2.7版本中先在一部分**中測試一些
3.x的特性,如果沒有問題,再移植到
3.x不遲。
python提供了
__future__
為了適應python 3.x
的新的字串的表示方法,在
2.7版本的**中,可以通過
unicode_literals
來使用python 3.x
的新的語法:
# still running on python 2.7
from __future__ import unicode_literals
print '\'***\' is unicode?', isinstance('***', unicode)
print 'u\'***\' is unicode?', isinstance(u'***', unicode)
print '\'***\' is str?', isinstance('***', str)
print 'b\'***\' is str?', isinstance(b'***', str)
注意到上面的**仍然在python 2.7
下執行,但結果顯示去掉字首u的
'a string'
仍是乙個
unicode
,而加上字首b的
b'a string'
才變成了
str:
$ python task.py
'***' is unicode? true
u'***' is unicode? true
'***' is str? false
b'***' is str? true
類似的情況還有除法運算。在python 2.x
中,對於除法有兩種情況,如果是整數相除,結果仍是整數,餘數會被扔掉,這種除法叫「地板除」:
>>> 10 / 3 3
要做精確除法,必須把其中乙個數變成浮點數:
>>> 10.0 / 3
3.3333333333333335
而在python 3.x
中,所有的除法都是精確除法,地板除用
//表示:
$ python3
python 3.3.2 (default, jan 22 2014, 09:54:40)
>>> 10 / 3
3.3333333333333335
>>> 10 // 3 3
如果你想在python 2.7
的**中直接使用
python 3.x
的除法,可以通過
__future__
模組的division
實現:from __future__ import division
print '10 / 3 =', 10 / 3
print '10.0 / 3 =', 10.0 / 3
print '10 // 3 =', 10 // 3
結果如下:
10 / 3 = 3.33333333333
10.0 / 3 = 3.33333333333
10 // 3 = 3
小結:由於python
是由社群推動的開源並且免費的開發語言,不受商業公司控制,因此,
python
的改進往往比較激進,不相容的情況時有發生。
python
為了確保你能順利過渡到新版本,特別提供了
__future__
模組,讓你在舊的版本中試驗新版本的一些特性。
多執行緒學習之Callable介面和Future類
二 編寫每個執行緒類的執行任務,實現callable介面,重寫call方法滿足自己的需求 三 主方法中啟動run方法 四 總結 public class mythread extends thread 重寫run方法滿足自己的需求 override public void run else brea...
學習筆記 python使用SQLite
python運算元據庫系列 python使用sqlite python操作redis python操作mysql 5.修改資料 6.刪除資料 三 全部 四 總結 sqlite不是乙個客服端 伺服器結構的資料庫引擎,而是一種嵌入式資料庫,它的資料庫就是乙個檔案。sqlite將整個資料庫,包括定義 表 ...
Python 學習筆記 6 1 使用模組
python本身就內建了很多非常有用的模組,只要安裝完畢,這些模組就可以立刻使用。我們以內建的sys模組為例,編寫乙個hello的模組 usr bin env python3 coding utf 8 a test module author michael liao import sys deft...