在Python中,print() 函数用于输出指定的内容。可以在括号内输入要输出的内容,也可以使用逗号分隔多个参数。例如:
print("Hello, World!") print("The answer is", 42)
在Python 3.x 中,print() 是一个函数,需要使用括号来调用。而在 Python 2.x 中,print 是一个语句,可以直接使用。