飘逸的python - ord和chr以及unichr

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了飘逸的python - ord和chr以及unichr相关的知识,希望对你有一定的参考价值。

ord是unicode ordinal的缩写,即编号

chr是character的缩写,即字符

ord和chr是互相相应转换的.

可是因为chr局限于ascii,长度仅仅有256.

于是又多了个unichr.


>>c = u‘康‘

>>c

u‘\u5eb7‘

>>ord(c)

24747

>>chr(24247)

ValueError: chr() arg not in range(256)

>>unichr(24247)

u‘\u5eb7‘









以上是关于飘逸的python - ord和chr以及unichr的主要内容,如果未能解决你的问题,请参考以下文章

Python chr / ord 函数区别和使用

python中ord()函数和chr()函数用法

python的内置函数ord()chr()str()

Python二级考试基础知识(ord,chr函数详解)

python chr()unichr()和ord()

Python chr() ord() unichr()