gpt4 book ai didi

python - 如何将unicode字符转义为python中的符号实体名称?

转载 作者:行者123 更新时间:2023-11-28 23:04:49 24 4
gpt4 key购买 nike

我要实现的是

Í -> í
ø -> ø
ñ -> ñ
...

在 python 中是否有标准方法,或者我是否必须创建自己的字典并使用它手动转义字符?

我在 SO 上找到了很多其他方法的提示,但没有一个能回答我的问题。

最佳答案

您正在寻找 htmlentitydefs :

In [217]: import htmlentitydefs

In [224]: ['&'+htmlentitydefs.codepoint2name[ord(x)]+';' for x in u'Íøñ']
Out[224]: ['Í', 'ø', 'ñ']

关于python - 如何将unicode字符转义为python中的符号实体名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7051791/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com