from __future__ import print_function 的作用

今天在读莫凡Python的教程代码,在TensorFlow教程里看到了一下用法,from __future__ import print_function。其实这句函数之后,即使在低版本的python2.X,当使用print函数时,须python3.X那样加括号使用。tips:python2.X中print不需要括号,而在python3.X中则需要。

# python3.x
print("hello world!")

# python2.x
print "hello world!"
# or
from __future__ import print_function
print("hello world!")

对于所有的from __future__ import _,则意味着在新旧版本的兼容性方面存在差异,处理方法是按照最新的特性来处理。可以将future看成Python的一个专门存放新特性的模块。除了print_function,还有absolute_import,division,unicode_literals。

你可能感兴趣的:(记录)