from __future__ import print_function
Posted 沧海一粟,何以久远
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了from __future__ import print_function相关的知识,希望对你有一定的参考价值。
1、在python2.x的环境是使用下面语句,则第二句语法检查通过,第三句语法检查失败
1 from __future__ import print_function 2 priint(‘good‘) 3 print ‘bad‘
2、Python提供了__future__
模块,把下一个新版本的特性导入到当前版本,于是我们就可以在当前版本中测试一些新版本的特性
参考:http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386820023084e5263fe54fde4e4e8616597058cc4ba1000
以上是关于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