在python2里面使用python3的print
在 2.6 版中,print
函数通过 __future__
模块向后移植到 Python 2:
# 在 Python 2.6 及以上版本中
from __future__ import print_function
print("Hello", "world!")
> Hello world!
print
语句在 Python 3 中无法运行。如果你要输出内容,并希望在两个版本的 Python 中都可以,则需要在 Python 2 代码中导入 print_function
。