Python内置函数之bytes()

时间:2020-12-14 18:10:10

该函数是一个类对象:

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

返回值为字节对象,当第一个参数为字符串时,必须提供第二个参数,第二个参数为编码类型的字符串。

bytes()返回对象中的元素是不可修改的。

下面看看例子:

>>> bytes('中国','utf-8')
b
'\xe4\xb8\xad\xe5\x9b\xbd'
>>> bytes([1,3,4])
b
'\x01\x03\x04'
>>> a = bytes([1,3,4])
>>> a[2]
4
>>> a[2] = 6
Traceback (most recent call last):
File
"<stdin>", line 1, in <module>
TypeError:
'bytes' object does not support item assignment