Python:to_bytes、to_bytes大端和小端字节和数值转换

发布时间:2023年12月17日

语法

int.to_bytes(length, byteorder)

参数:

  • length – 所需的数组长度(字节)
  • byteorder – 字节顺序,用于将int转换为字节数组。
    • 字节顺序的值可以是“little”,其中最高有效位存储在末尾,而最低有效位则存储在开头;
    • 也可以是big,其中MSB存储在开头,LSB存储在结尾。

异常:

如果整数值长度不够大,无法容纳在数组的长度中,则返回OverflowError。

num = 1
print(num.to_bytes(length=8, byteorder='little'))
# b'\x01\x00\x00\x00\x00\x00\x00\x00'

print(num.to_bytes(length=8, byteorder='big'))
# b'\x00\x00\x00\x00\x00\x00\x00\x01'
little_byte = b'\x01\x00\x00\x00\x00\x00\x00\x00'
print(int.from_bytes(little_byte, byteorder='little'))
# 1

big_byte = b'\x00\x00\x00\x00\x00\x00\x00\x01'
print(int.from_bytes(big_byte, byteorder='big'))
# 1
文章来源:https://blog.csdn.net/mouday/article/details/135045548
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。