#该模块可以把一个类型,如数字,转成固定长度的bytes类型import struct# res = struct.pack('i',12345)# print(res,len(res),type(res)) #长度是4res2 = struct.pack('i',12345111)print(res2,len(res2),type(res2)) #长度也是4unpack_res =struct.unpack('i',res2)print(unpack_res) #(12345111,)# print(unpack_res[0]) #12345111struct