str 、 repr 、 `` 、是将Python值转换为字符串的3种方式

print str("Hello, World !")
hello, world !

print repr("Hello, World !")
'Hello, World !'

temp = 2
print "The number is " + temp
The number is 2