在Python 2中:
x = bytearray(b'\ n \ x91 \ x8c \ xbc \ xd4 \ xc6 \ xd2 \ x19')
print(x)
������
在Python 3中:
x = bytearray(b'\ n \ x91 \ x8c \ xbc \ xd4 \ xc6 \ xd2 \ x19')
print(x)
bytearray(b'\ n \ x91 \ x8c \ xbc \ xd4 \ xc6 \ xd2 \ x19')
那是为什么?
谢谢