當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。