猿问

无法在 python 3 中解码字节数组,但在 python 2 中可能

我正在尝试bytearray在 Python 3 中将 a 打印为一串 ascii 字符。


我有一个bytearray我尝试使用 Python 2 和 Python 3 打印的。在 Python 2 中,bytearray它以正确的 ascii 字符打印到控制台。但是,当我在 Python 3 中尝试它时,我收到如下错误:


Python2:


print(bytearray(b"\x0e6G\xe8Y-5QJ\x08\x12CX%6\xed=\xe6s@Y\x00\x1e?S\\\xe6\'\x102"))


# 6G?Y-5QCX%6?=?s@Y?S\?'2

Python3:


print(bytearray(b"\x0e6G\xe8Y-5QJ\x08\x12CX%6\xed=\xe6s@Y\x00\x1e?S\\\xe6\'\x102").decode("ascii"))


Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe8 in position 3: ordinal not in range(128)

如何在 Python 3 中实现与 Python 2 中相同的行为?print在 Python 2 中,除了简单地将字节数组解码为 ascii 之外,还做其他事情吗?


繁花不似锦
浏览 183回答 1
1回答

慕运维8079593

ascii是 7 位。使用iso-8859-158 位等。您选择哪一种 8 位编解码器将取决于您首选的高位字符映射。>>> print(bytearray(b"\x0e6G\xe8Y-5QJ\x08\x12CX%6\xed=\xe6s@Y\x00\x1e?S\\\xe6\'\x102").decode("iso-8859-15"))6GèY-5QCX%6í=æs@Y?S\æ'2>>> print(bytearray(b"\x0e6G\xe8Y-5QJ\x08\x12CX%6\xed=\xe6s@Y\x00\x1e?S\\\xe6\'\x102").decode("iso-8859-15").encode("iso-8859-15") == bytearray(b"\x0e6G\xe8Y-5QJ\x08\x12CX%6\xed=\xe6s@Y\x00\x1e?S\\\xe6\'\x102"))True
随时随地看视频慕课网APP

相关分类

Python
我要回答