最佳答案
我有这个字符串已经解码从 Quoted-printable 到 ISO-8859-1与电子邮件模块。这就给了我类似于“ xC4pple”的字符串,它对应于“ Apple”(瑞典语中的 Apple)。 但是,我不能将这些字符串转换为 UTF-8。
>>> apple = "\xC4pple"
>>> apple
'\xc4pple'
>>> apple.encode("UTF-8")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc4 in position 0: ordinal not in range(128)
我该怎么办?