Python バイト配列型 bytearray
Publish date: 2021-03-25
Last updated: 2021-03-25
Last updated: 2021-03-25
Pythonの組み込み型bytearrayはバイトのミュータブルなシーケンスです。
bytearrayの定義
b = bytearray() # => bytearray(b'')
b = bytearray(5) # => bytearray(b'\x00\x00\x00\x00\x00')
b = bytearray( x + 97 for x in range(5)) # => bytearray(b'abcde')
b = bytearray(b"abcde") # => bytearray(b'abcde')
b = bytearray("abcde", "utf-8") # => bytearray(b'abcde')
bytearray.fromhex(string) 16進数2桁表記文字列をbytearrayに変換
bytearray.fromhex("61 62 63") # => bytearray(b'abc')
hex([sep[, bytes_per_sep]]) bytearrayを16進数文字列に変換
b = bytearray(b"abcdefghijk") # => bytearray(b'abcde')
b.hex() # => '6162636465666768696a6b'
b.hex('-') # => '61-62-63-64-65-66-67-68-69-6a-6b'
b.hex('-', 4) # => '616263-64656667-68696a6b'
整数の配列への変換
b = bytearray(b"abcde")
list(b) # => [97, 98, 99, 100, 101]
bytearrayのメソッド
その他string と同様のメソッドが使えます。