最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
当前位置: 首页 - 科技 - 知识百科 - 正文

Python内置bytes函数的详细介绍

来源:懂视网 责编:小采 时间:2020-11-27 14:25:11
文档

Python内置bytes函数的详细介绍

Python内置bytes函数的详细介绍:英文文档:class bytes([source[, encoding[, errors]]]) Return a new bytes object, which is an immutable sequence of integers in the range 0 <= x < 256. bytes is an immutable
推荐度:
导读Python内置bytes函数的详细介绍:英文文档:class bytes([source[, encoding[, errors]]]) Return a new bytes object, which is an immutable sequence of integers in the range 0 <= x < 256. bytes is an immutable

英文文档:

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

Return a new “bytes” object, which is an immutable sequence of integers in the range 0 <= x < 256. bytes is an immutable version of bytearray – it has the same non-mutating methods and the same indexing and slicing behavior.

Accordingly, constructor arguments are interpreted as for bytearray().

说明:

1. 返回值为一个新的不可修改字节数组,每个数字元素都必须在0 - 255范围内,是bytearray函数的具有相同的行为,差别仅仅是返回的字节数组不可修改。

2. 当3个参数都不传的时候,返回长度为0的字节数组

>>> b = bytes()
>>> b
b''
>>> len(b)
0

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

>>> bytes('中文') #需传入编码格式
Traceback (most recent call last):
 File "<pyshell#14>", line 1, in <module>
 bytes('中文')
TypeError: string argument without an encoding
>>> bytes('中文','utf-8')
b'xe4xb8xadxe6x96x87'
>>> '中文'.encode('utf-8')
b'xe4xb8xadxe6x96x87'

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

>>> bytes(2)
b'x00x00'
>>> bytes(-2) #整数需大于0,用于做数组长度
Traceback (most recent call last):
 File "<pyshell#19>", line 1, in <module>
 bytes(-2)
ValueError: negative count

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

6. 当source参数是一个可迭代对象,那么这个迭代对象的元素都必须符合0 <= x < 256,以便可以初始化到数组里

>>> bytes([1,2,3])
b'x01x02x03'
>>> bytes([256,2,3])
Traceback (most recent call last):
 File "<pyshell#21>", line 1, in <module>
 bytes([256,2,3])
ValueError: bytes must be in range(0, 256)

7. 返回数组不可修改

>>> b = bytes(10)
>>> b
b'x00x00x00x00x00x00x00x00x00x00'
>>> b[0]
>>> b[1] = 1 #不可修改
Traceback (most recent call last):
 File "<pyshell#6>", line 1, in <module>
 b[1] = 1
TypeError: 'bytes' object does not support item assignment
>>> b = bytearray(10)
>>> b
bytearray(b'x00x00x00x00x00x00x00x00x00x00')
>>> b[1] = 1 #可修改
>>> b
bytearray(b'x00x01x00x00x00x00x00x00x00x00')

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文档

Python内置bytes函数的详细介绍

Python内置bytes函数的详细介绍:英文文档:class bytes([source[, encoding[, errors]]]) Return a new bytes object, which is an immutable sequence of integers in the range 0 <= x < 256. bytes is an immutable
推荐度:
标签: 介绍 内置 简介
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top