gpt4 book ai didi

python - 在 Python 中大写非 ASCII 单词

转载 作者:太空狗 更新时间:2023-10-30 00:37:35 24 4
gpt4 key购买 nike

如何在 Python 中将包含非 ASCII 字符的单词大写?有没有办法调整 stringcapitalize() 方法来做到这一点?

最佳答案

使用 Unicode 字符串:

# coding: cp1252
print u"é".capitalize()
# Prints É

如果您只有一个 8 位字符串,请先将其解码为 Unicode:

# coding: cp1252
print "é".decode('cp1252').capitalize()
# Prints É

如果您随后再次需要它作为 8 位字符串,请对其进行编码:

# coding: cp1252
print "é".decode('cp1252').capitalize().encode('cp1252')
# Prints É (assuming your terminal is happy to receive cp1252)

关于python - 在 Python 中大写非 ASCII 单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1006450/

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