标签: python python-3.x function bytestream
我尝试使用to_bytes功能。在大多数情况下,它对我有用,但并不总是如此。例如:
to_bytes
byteData = (212168254).to_bytes(4,'big') print (byteData)
打印应该会给我b'\x0c\xa5\x6e\x3e',但它会给我b'\x0c\xa5n>'。那是为什么?
b'\x0c\xa5\x6e\x3e'
b'\x0c\xa5n>'