python中的Unicode编码[重复]
Posted
技术标签:
【中文标题】python中的Unicode编码[重复]【英文标题】:Unicode encoding in python [duplicate] 【发布时间】:2012-09-03 11:20:26 【问题描述】:可能重复:Convert XML/html Entities into Unicode String in PythonDecode HTML entities in Python string?
我正在使用 Python 2.7,并且在 unicode 类型中迷失了方向。我查找了各种帮助文件和教程,因为我无法让它在我需要的上下文中实际工作。 http://docs.python.org/howto/unicode.html
我有一个带有名称的库,它被解码保存,例如。亚伦的 我需要将名称编码为用户友好的方式 似乎是编码的基本答案
a ='aaron's,'
unicode(a)
a.encode('ascii', 'replace')
返回:
'aaron's,'
这不是我想要的。
【问题讨论】:
见 - ***.com/questions/57708/… - ***.com/questions/701704/… 【参考方案1】:您正在寻找 HTML 实体解码,而不是 Unicode(或编解码器)解码。
请参阅Decode HTML entities in Python string? 了解执行此操作的方法。
【讨论】:
以上是关于python中的Unicode编码[重复]的主要内容,如果未能解决你的问题,请参考以下文章