Python 输入输出

输入:

print "hello world"
print 'hello world'
print ("hello world")
print ('hello world')
print 1+2
print "1+2=",1+2

输出: 

language = raw_input("Please input the language you like")
print language

你可能感兴趣的:(Python 输入输出)