为什么无法在python 2中将打印分配给foo?

时间:2019-09-15 19:49:05

标签: python python-3.x python-2.7

为什么将print分配给foo时python 2代码抛出错误,而python 3却没有?

Python 2

>>> foo = print
  File "<stdin>", line 1
    foo = print
              ^
SyntaxError: invalid syntax

Python 3

>>> foo = print

0 个答案:

没有答案