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的主要内容,如果未能解决你的问题,请参考以下文章