from __future__ import print_function的作用
Posted cheesezh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了from __future__ import print_function的作用相关的知识,希望对你有一定的参考价值。
阅读代码的时候会看到下面语句:
from __future__ import print_function
该语句是python2的概念,那么python3对于python2就是future了,也就是说,在python2的环境下,超前使用python3的print函数。
在python2.x
的环境是使用下面语句,第二句语法检查通过,第三句语法检查失败
from __future__ import print_function
print('you are good') # syntax pass
print 'you are good' # syntax error
以上是关于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