from __future__ import print_function的使用

Posted cn_XuYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了from __future__ import print_function的使用相关的知识,希望对你有一定的参考价值。

1.作用:把下一个新版本的特性导入到当前版本,就可以在当前版本中测试一些新版本的语法特性,例如在python2的环境下加入这一句可以测试python3的输出语法

2.使用方式:置于程序的第一行

3.示例:

不加from __future__ import print_function,在python2的环境下分别print"good"和print("good")

加from __future__ import print_function,在python2的环境下分别print"good"和print("good")

 

以上是关于from __future__ import print_function的使用的主要内容,如果未能解决你的问题,请参考以下文章

from __future__ import absolute_import的作用

from __future__ import print_function的作用

from __future__ import unicode_literals, absolute_import

from __future__ import print_function

from __future__ import print_function的使用

python from __future__ import division