>>> x=12
>>> x
12
>>> print x
12
>>> print ("hello world!")-------print打印输出的时候,括号可以省略
hello world!

>>> print "hello world!"
hello world!