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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 之 str repr 反引号(``)的区别相关的知识,希望对你有一定的参考价值。

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

以上是关于Python 之 str repr 反引号(``)的区别的主要内容,如果未能解决你的问题,请参考以下文章

基础学习

python基础教程:print()str()和repr()的区别

repr. str, ascii in Python

python str 与repr区别

Python中字符串表示str与repr

python之反射和内置函数__str____repr__