使用打印功能

Python 3.x >= 3.0

在 Python 3 中,打印功能采用函数的形式:

print("This string will be displayed in the output")
# This string will be displayed in the output

print("You can print \n escape characters too.")
# You can print escape characters too.

Python 2.x >= 2.3

在 Python 2 中,print 最初是一个声明,如下所示。

print "This string will be displayed in the output"
# This string will be displayed in the output

print "You can print \n escape characters too."
# You can print escape characters too.

注意:在 Python 2 中使用 from __future__ import print_function 将允许用户使用与 Python 3 代码相同的 print() 函数。这仅适用于 Python 2.6 及更高版本。