Python 之 str 、 repr 、 反引號(``)的區別

str 、 repr 、 `` 、是將Python值轉換爲字符串的3種方式ide

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

print repr("Hello, World !")
'Hello, World !'字符串

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

相關文章
相關標籤/搜索