Python之str、repr、反引号(``)的区别

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

创新互联是一家专业提供连城企业网站建设,专注与网站制作、成都网站建设H5页面制作、小程序制作等业务。10年已为连城众多企业、政府机构等服务。创新互联专业的建站公司优惠进行中。

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

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

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


本文名称:Python之str、repr、反引号(``)的区别
文章URL:http://myzitong.com/article/ghedid.html