整数转字节
int.to_bytes(length,byteorder,*,signed=False)byteorder 可取值 big 或 little
(1).to_bytes(1, byteorder='big')
b'\x01'
(1).to_bytes(2, byteorder='big')
b'\x00\x01'
(1).to_bytes(3, byteorder='big')
b'\x00\x00\x01'
字节转整数
c=b'\x00\x00\x03\x84'
d=int.from_bytes(c, byteorder='big')
900
网友评论