from __future__ import print_function 介绍
Posted K同学啊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了from __future__ import print_function 介绍相关的知识,希望对你有一定的参考价值。
在开头加上from __future__ import print_function
这句之后 ,即使在Python2.X,使用print就得像Python3.X那样加括号使用。Python2.X中print
不需要括号,而在Python3.X中则需要。
示例:
# python2.7
print "Hello world"
# python3
print("Hello world")
如果某个版本中出现了某个新的功能特性,而且这个特性和当前版本中使用的不兼容,也就是它在该版本中不是语言标准,那么我如果想要使用的话就需要从future
模块导入。
例如:
from __future__ import division
from __future__ import absolute_import
加上这些,即使你的python版本是Python2.X,你也得按照Python3.X那样使用这些函数。
以上是关于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