python里面 __future__的作用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python里面 __future__的作用相关的知识,希望对你有一定的参考价值。
参考这篇文章:
http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386820023084e5263fe54fde4e4e8616597058cc4ba1000
其实就是在旧版本里面测试新版本的一些功能
比如python3.0里面的 division,//,unicode string 等等
在2.7里面通过 import __future__ 来获得新特性。当然了,我理解,如果这个版本(2.7)的__future__包里面不带的功能,那就测试不了了。
以上是关于python里面 __future__的作用的主要内容,如果未能解决你的问题,请参考以下文章
Python基础之--from __future__ import unicode_literals作用
from __future__ import absolute_import的作用
from __future__ import print_function的使用