不太明白题主的意思,能否再明确一点。
Python的打印输出是通过print来完成的。在Python2.x中,print是一条语句,在Python3.x中,print变成了一个函数。使用方法略有不同。
比如在2.x中,可以用
print“Python”
但是在3.x中则需要
print("Python")
希望能够帮到题主。