输入:
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
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