from __future__ import 作用

来源:互联网 发布:淘宝流量券在哪里查看 编辑:程序博客网 时间:2024/05/18 02:41


从python2.1开始以后, 当一个新的语言特性首次出现在发行版中时候, 如果该新特性与以前旧版本python不兼容, 则该特性将会被默认禁用. 如果想启用这个新特性,则必须使用 "from __future__import *" 语句进行导入.新特性支持的模块有如下:


featureoptional inmandatory ineffectnested_scopes2.1.0b12.2PEP 227Statically Nested Scopesgenerators2.2.0a12.3PEP 255Simple Generatorsdivision2.2.0a23.0PEP 238Changing the Division Operator,除法更加精确absolute_import2.5.0a12.7PEP 328Imports: Multi-Line and Absolute/Relativewith_statement2.5.0a12.6PEP 343The “with” Statementprint_function2.6.0a23.0PEP 3105Make print a functionunicode_literals2.6.0a23.0PEP 3112Bytes literals in Python 3000

原创粉丝点击