如何获得角色描述

时间:2018-03-11 19:14:00

标签: python

我是Python的初学者。我试图找到一种方法来获取Unicode字符的描述

代码:

str = "python"+chr(8)
for i in str:
    print(chr(ord(i)))

例如:

ord(i) = 105
chr(105) = i

我的问题是像chr(8)这样的非ASCII Unicode字符,我想要检索类似" backspace"的描述。在这种情况下。

0 个答案:

没有答案