标签:语句 from ror 通过 使用 函数 2.x python3 nta
阅读代码的时候会看到下面语句:
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 ror 通过 使用 函数 2.x python3 nta
原文地址:https://www.cnblogs.com/CheeseZH/p/9497671.html