英文文档:
class bytearray
([ソースbytearray
([source[, encoding[, errors]]])
Return a new array of bytes. The bytearray
class is a mutable sequence of integers in the range 0 <= x < 256. It has most of the usual methods of mutable sequences, described in Mutable Sequence Types, as well as most methods that the bytes
type has, see Bytes and Bytearray Operations.
The optional source parameter can be used to initialize the array in a few different ways:
If it is a string, you must also give the encoding (and optionally, errors) parameters; bytearray()
then converts the string to bytes using str.encode()
.
If it is an integer, the array will have that size and will be initialized with null bytes.
If it is an object conforming to the buffer interface, a read-only buffer of the object will be used to initialize the bytes array.
If it is an iterable, it must be an iterable of integers in the range <span class="pre" style="margin: 0px; padding: 0px;">0 <span class="pre" style="margin: 0px; padding: 0px;"><= <span class="pre" style="margin: 0px; padding: 0px;">x <span class="pre" style="margin: 0px; padding: 0px;">< <span class="pre" style="margin: 0px; padding: 0px;">256</span></span></span></span></span>
[,エンコーディング
新しい配列を返しますバイト。 bytearray
クラスは、0 可変シーケンスのタイプで説明されている可変シーケンスの通常のメソッドのほとんどと、 bytes
型には、Bytes および Bytearray 操作を参照してください。
オプションsource
パラメータを使用して、いくつかの異なる方法で配列を初期化できます:🎜文字列🎜 の場合は、エンコーディング🎜 (およびオプションでエラー🎜) パラメータ; integer🎜 の場合、配列はそのサイズになり、null バイトで初期化されます。🎜🎜 padding: 0px;">buffer🎜 インターフェイスでは、オブジェクトの読み取り専用バッファがバイト配列の初期化に使用されます。🎜🎜 iterable🎜、 1. 戻り値は新しいバイト配列です 2. 3 つのパラメータのいずれも渡されない場合、長さ 0 のバイト配列が返されます 3. ソースパラメータが文字列の場合、エンコーディングパラメータ 関数が str.encode メソッドを使用して文字列をバイト配列に変換することも指定する必要があります 4. ソースパラメータが整数の場合、これで指定された長さの空のバイト配列を返しますinteger 5. ソースパラメータがバッファインターフェイスを実装するオブジェクトである場合、バイトは読み取り専用モードでバイト配列に読み込まれ、ソースパラメータが返されます。が反復可能オブジェクトの場合、これは配列 bytearray()
は、str.encode()
.🎜🎜<span class="pre" style="margin: 0px;パディング: 0px;">0 <span class="pre" style="margin: 0px;パディング: 0px;"><= <span class="pre" style="margin: 0px;パディング: 0px;">x <span class="pre" style="margin: 0px;パディング: 0px;">< <span class="pre" style="margin: 0px; padding: 0px;">256</span></span></span></span></span>
、配列の初期内容として使用されます。🎜🎜🎜🎜引数なし、サイズ 0 の配列が作成されます。🎜🎜说明:🎜>>> b = bytearray()
>>> b
bytearray(b'')
>>> len(b)
0
>>> bytearray('中文')
Traceback (most recent call last):
File "<pyshell#48>", line 1, in <module>
bytearray('中文')
TypeError: string argument without an encoding
>>> bytearray('中文','utf-8')
bytearray(b'\xe4\xb8\xad\xe6\x96\x87')
>>> bytearray(2)
bytearray(b'\x00\x00')
>>> bytearray(-2) #整数需大于0,使用来做数组长度的
Traceback (most recent call last):
File "<pyshell#51>", line 1, in <module>
bytearray(-2)
ValueError: negative count
>>> bytearray([1,2,3])
bytearray(b'\x01\x02\x03')
>>> bytearray([256,2,3]) #不在0-255范围内报错
Traceback (most recent call last):
File "<pyshell#53>", line 1, in <module>
bytearray([256,2,3])
ValueError: byte must be in range(0, 256)
以上がPython の組み込み bytearray 関数の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。