任务是转换Де
为Де
. Python 3 有内置函数还是我需要解析这个字符串然后使用内置chr
方法将每个数字转换为字符串?
问问题
147 次
2 回答
2
您可以使用以下html.unescape
功能:
import html
text = 'Де'
result = html.unescape(text)
于 2017-03-02T13:19:10.443 回答
2
在 python 3.4 及更高版本中,您可以使用html.unescape
:
>>> import html
>>> print(html.unescape('Де'));
Де
于 2017-03-02T13:19:15.900 回答