今天在學習Python Cookbook的時候,發現一句文法from __future__ import division,很奇怪__future__這個名字,網上搜了一下,原來是很有用的一個模組。
詳細說明見這裡。按照官方的解釋,至少確保在2.1之前版本的Python可以正常運行一些新的語言特性,需要使用語句 'from __future__ import *'。舉例來說:
# Enable nested scopes in Python 2.1
from __future__ import nested_scopes
如果使用這個語句,則該語句必須是模組或程式的第一個語句。此外,'__ future__' 模組中存在的特性最終將成為Python語言標準的一部分。到那時,將不再需要使用 '__future__' 模組。
更多樣本:
1. Python 2.6中也有一個 __future__ import 使得所有的字串文本成為Unicode字串。這就意味著\u逸出序列可以用於包含Unicode字元。
from __future__ import unicode_literals
s = ('\u751f\u3080\u304e\u3000\u751f\u3054'
'\u3081\u3000\u751f\u305f\u307e\u3054')
print len(s) # 12 Unicode characters
2. Python 2.6可以通過 import __future__ 來將print從語言文法中移除,讓你可以使用函數的形式。例如:
from __future__ import print_function
print('# of entries', len(dictionary), file=sys.stderr)
3. 整數除法
python 2.5中:23/6 # 得3
from __future__ import division 之後:
23/6 # 得 3.8333333333333335