1. 程式人生 > >python裏面 __future__的作用

python裏面 __future__的作用

visio 作用 pytho nic bsp http python 如果 string

參考這篇文章:

http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386820023084e5263fe54fde4e4e8616597058cc4ba1000

其實就是在舊版本裏面測試新版本的一些功能

比如python3.0裏面的 division,//,unicode string 等等

在2.7裏面通過 import __future__ 來獲得新特性。當然了,我理解,如果這個版本(2.7)的__future__包裏面不帶的功能,那就測試不了了。

python裏面 __future__的作用