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


Python Int轉Bytes用法及代碼示例

一個 int 對象可用於以字節的格式表示相同的值。整數表示一個字節,存儲為一個數組,其最高有效位 (MSB) 存儲在數組的開頭或結尾。

方法一:int.tobytes()

可以使用 int.to_bytes() 方法將 int 值轉換為字節。該方法在 int 值上調用,Python 2(需要最低 Python3)不支持執行。

用法:int.to_bytes(length, byteorder)

參數



length - 數組的所需長度(以字節為單位)。

byteorder - 將 int 轉換為字節的數組順序。 byteorder 的值可以是 “little”,其中最高有效位存儲在末尾,最低存儲在開頭,也可以是 big,其中 MSB 存儲在開頭,LSB 存儲在末尾。

異常:

如果整數值長度不足以容納在數組的長度中,則返回溢出錯誤。

以下程序說明了此方法在 Python 中的用法:

Python3


# declaring an integer value
integer_val = 5
  
# converting int to bytes with length 
# of the array as 2 and byter order as big
bytes_val = integer_val.to_bytes(2, 'big')
  
# printing integer in byte representation
print(bytes_val)
輸出
b'\x00\x05'

Python3


# declaring an integer value
integer_val = 10
  
# converting int to bytes with length 
# of the array as 5 and byter order as 
# little
bytes_val = integer_val.to_bytes(5, 'little')
  
# printing integer in byte representation
print(bytes_val)
輸出
b'\n\x00\x00\x00\x00'

方法二:整數轉字符串,字符串轉字節

這種方法在 Python 版本 2 和 3 中都兼容。這種方法不將數組的長度和字節順序作為參數。

  • 以十進製格式表示的整數值可以首先使用 str() 函數轉換為字符串,該函數將整數值作為參數轉換為相應的字符串等價物。
  • 然後,通過為每個字符選擇所需的表示形式,將這個字符串等價物轉換為字節序列,即對字符串值進行編碼。這是通過 str.encode() 方法完成的。

Python3


# declaring an integer value
int_val = 5
  
# converting to string
str_val = str(int_val)
  
# converting string to bytes
byte_val = str_val.encode()
print(byte_val)
輸出
b'5'




相關用法


注:本文由純淨天空篩選整理自yashkumar0457大神的英文原創作品 How to Convert Int to Bytes in Python?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。