repr函数
2018-11-27 本文已影响1人
MA木易YA
repr函数:功能是创建一个字符串,以合法的Python表达式的形式来表示值
print repr("Hello Python!")
print repr(10000L)
#输出
'Hello Python!'
10000L
反引号的好处还在当你想打印一个包含数字的句子时,派上用场了,但在Python 3.0中已经不支持反引号了,所以还是坚持用repr()函数吧
temp=2
print( "The temperature is "+ repr(temp))