当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python int.from_bytes用法及代码示例


用法:

classmethod int.from_bytes(bytes, byteorder, *, signed=False)

返回由给定字节数组表示的整数。

>>> int.from_bytes(b'\x00\x10', byteorder='big')
16
>>> int.from_bytes(b'\x00\x10', byteorder='little')
4096
>>> int.from_bytes(b'\xfc\x00', byteorder='big', signed=True)
-1024
>>> int.from_bytes(b'\xfc\x00', byteorder='big', signed=False)
64512
>>> int.from_bytes([255, 0, 0], byteorder='big')
16711680

参数 bytes 必须是 bytes-like 对象或可迭代的产生字节。

byteorder 参数确定用于表示整数的字节顺序。如果 byteorder"big" ,则最高有效字节位于字节数组的开头。如果 byteorder"little" ,则最高有效字节位于字节数组的末尾。要请求主机系统的本机字节顺序,请使用sys.byteorder 作为字节顺序值。

signed 参数指示是否使用二进制补码来表示整数。

3.2 版中的新函数。

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 int.from_bytes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。