3.5 字节到大整数的打包与解包">3.5 字节到大整数的打包与解包 3.5 字节到大整数的打包与解包x = 0x01020304print(x.to_bytes(4, byteorder='big'))print(x.to_bytes(4, byteorder='little'))