使用列印功能

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 及更高版本。