repr. str, ascii in Python

Posted 何大卫的博客

tags:

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

repr和str

a="Hello"
print(str(a))
print(repr(a))

结果:

Hello
'Hello'

可以看出,repr的结果中多了左右两个引号。

repr和ascii

同样是返回字符串,如果是非 ASCII 编码的字符,repr()返回的是x, u,U,这ascii()则不是。

以上是关于repr. str, ascii in Python的主要内容,如果未能解决你的问题,请参考以下文章

Python中str()和repr()的区别

ascii#ascii,对象类中找__repr__,获取其返回值

repr和str的区别

__str__和__repr的区别

__repr__与__str__

str&repr的使用