在Python 2.7和Python 3.5中打印字节数组

时间:2018-08-23 11:28:48

标签: arrays python-3.x python-2.7 printing

在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')

那是为什么?

谢谢

0 个答案:

没有答案