from __future__ import print_function的用法(repost from https://blog.csdn.net/xiaotao_1/article/details/79460365)
在代码的开头加上from __future__ import print_function之后,即使在python2.X,使用print也得像python3.X那样加括号使用。(需要特别注意的一点是,这句话必须出现在代码的第一行)
如果某个版本中出现了某个新的功能特性,而且这个特性和当前版本中使用的不兼容,也就是它在该版本中不是语言标准,那么我如果想要使用的话就需要从future模块导入。
其他例子:
from __future__ import division
,
from __future__ import absolute_import
,
from __future__ import with_statement