用法:
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 int.bit_length用法及代碼示例
- Python int.bit_count用法及代碼示例
- Python int.to_bytes用法及代碼示例
- Python scipy integrate.trapz用法及代碼示例
- Python int轉exponential用法及代碼示例
- Python integer轉string用法及代碼示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代碼示例
- Python scipy interpolate.CubicSpline.solve用法及代碼示例
- Python scipy integrate.cumtrapz用法及代碼示例
- Python scipy interpolate.PchipInterpolator.solve用法及代碼示例
- Python integer轉roman用法及代碼示例
- Python scipy integrate.simps用法及代碼示例
- Python scipy interpolate.Akima1DInterpolator.solve用法及代碼示例
- Python int()用法及代碼示例
- Python inspect.Parameter.replace用法及代碼示例
- Python inspect.Parameter.kind用法及代碼示例
- Python inspect.Signature.from_callable用法及代碼示例
- Python inspect.isasyncgenfunction用法及代碼示例
- Python inspect.isawaitable用法及代碼示例
- Python inspect.BoundArguments.apply_defaults用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 int.from_bytes。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。