python内置bytes函数的详细介绍

英文文档:

class bytes([source[, encoding[, errors]]])

return a new “bytes” object, which is an immutable sequence of integers in the range 0 >> b = bytes()
>>> b
b”
>>> len(b)
0

3. 当source参数为字符串时,encoding参数也必须提供,函数将字符串使用str.encode方法转换成字节数组

>>> bytes(‘中文’) #需传入编码格式
traceback (most recent call last):
file “”, line 1, in
bytes(‘中文’)
typeerror: string argument without an encoding
>>> bytes(‘中文’,’utf-8′)
b’\xe4\xb8\xad\xe6\x96\x87′
>>> ‘中文’.encode(‘utf-8′)
b’\xe4\xb8\xad\xe6\x96\x87’

4. 当source参数为整数时,返回这个整数所指定长度的空字节数组

>>> bytes(2)
b’\x00\x00′
>>> bytes(-2) #整数需大于0,用于做数组长度
traceback (most recent call last):
file “”, line 1, in
bytes(-2)
valueerror: negative count

5. 当source参数为实现了buffer接口的object对象时,那么将使用只读方式将字节读取到字节数组后返回

6. 当source参数是一个可迭代对象,那么这个迭代对象的元素都必须符合0 >> bytes([1,2,3])
b’\x01\x02\x03′
>>> bytes([256,2,3])
traceback (most recent call last):
file “”, line 1, in
bytes([256,2,3])
valueerror: bytes must be in range(0, 256)

7. 返回数组不可修改

>>> b = bytes(10)
>>> b
b’\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00′
>>> b[0]
>>> b[1] = 1 #不可修改
traceback (most recent call last):
file “”, line 1, in
b[1] = 1
typeerror: ‘bytes’ object does not support item assignment
>>> b = bytearray(10)
>>> b
bytearray(b’\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00′)
>>> b[1] = 1 #可修改
>>> b
bytearray(b’\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00′)

以上就是python内置bytes函数的详细介绍的详细内容,更多请关注 第一php社区 其它相关文章!

Posted in 未分类

发表评论