美文网首页
python整数和字节相互转换

python整数和字节相互转换

作者: 明明就_c565 | 来源:发表于2020-08-04 17:20 被阅读0次

整数转字节

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

相关文章

网友评论

      本文标题:python整数和字节相互转换

      本文链接:https://www.haomeiwen.com/subject/hsvwrktx.html