gpt4 book ai didi

python - 在不更改编码的情况下在 Python 中将 u"string"转换为 "string"

转载 作者:太空狗 更新时间:2023-10-30 00:46:36 25 4
gpt4 key购买 nike

我有以下内容:

u'\x96'

我想将其转换为以下内容:

'\x96'

有什么办法吗? str() 不起作用,使用 .encode(...) 时它会更改编码。我的主要目标是能够获得以下结果,因此也可以接受任何到达那里的捷径:

>>> '\x96'.decode("cp1252")
u'\u2013'

换句话说,我有 u'\x96' 并且我想要 u'\u2013'。任何帮助将不胜感激。

我正在使用 Python 2.7。

最佳答案

u'\x96'.encode('raw_unicode_escape').decode("cp1252")

关于python - 在不更改编码的情况下在 Python 中将 u"string"转换为 "string",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7008668/

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