print()用于打印输出信息,用法如下:
In [1]: print "Hello World" # Python 2.x 中的用法 Hello World In [2]: print("Hello World") # Python 3.x 中的用法 Hello World