我想打印这样编码的字符串:"Cze\u00c5\u009b\u00c4\u0087",但我不知道如何打印。示例字符串应打印为:“Cześnic”。
我试过的是:

str = "Cze\u00c5\u009b\u00c4\u0087"
print(str)
#gives: CzeÅÄ

str_bytes = str.encode("unicode_escape")
print(str_bytes)
#gives: b'Cze\\xc5\\x9b\\xc4\\x87'

str = str_bytes.decode("utf8")
print(str)
#gives: Cze\xc5\x9b\xc4\x87

在哪里?
print(b"Cze\xc5\x9b\xc4\x87".decode("utf8"))

给出“Cześnic”,但我不知道如何将"Cze\xc5\x9b\xc4\x87"字符串转换为b"Cze\xc5\x9b\xc4\x87"字节。
我也知道问题是在用"unicode_escape"参数编码基字符串之后,字节表示中有额外的反斜杠,但是我不知道如何去掉它们-str_bytes.replace(b'\\\\', b'\\')不起作用。

最佳答案

使用raw_unicode_escape

text = 'Cze\u00c5\u009b\u00c4\u0087'
text_bytes = text.encode('raw_unicode_escape')
print(text_bytes.decode('utf8')) # outputs Cześć

09-20 22:39