repr函数:功能是创建一个字符串,以合法的Python表达式的形式来表示值
print repr("Hello Python!")
print repr(10000L)
#输出
'Hello Python!'
10000L
反引号的好处还在当你想打印一个包含数字的句子时,派上用场了,但在Python 3.0中已经不支持反引号了,所以还是坚持用repr()函数吧
temp=2
print( "The temperature is "+ repr(temp))
repr函数:功能是创建一个字符串,以合法的Python表达式的形式来表示值
print repr("Hello Python!")
print repr(10000L)
#输出
'Hello Python!'
10000L
反引号的好处还在当你想打印一个包含数字的句子时,派上用场了,但在Python 3.0中已经不支持反引号了,所以还是坚持用repr()函数吧
temp=2
print( "The temperature is "+ repr(temp))
本文标题:repr函数
本文链接:https://www.haomeiwen.com/subject/jxxnqqtx.html
网友评论