python内置函数bytes()用法详解
短信预约 -IT技能 免费直播动态提醒
python内置函数bytes返回一个新的bytes类型的对象,bytes类型对象是不可变序列,包含范围为 0 <= x < 256 的整数。bytes可以看做是bytearray的不可变版本,它同样支持索引和切片操作 bytes语法 class bytes([source[, encoding[, errors]]])
语法结构:
class bytes([source[, encoding[, errors]]])
参数解释:
- 可选形参source可以传入字符串,int,iterable 可迭代对象, 遵循 缓冲区接口 的对象, 不同的类型将有不同的效果
- string ,如果source是字符串,则必须指定encoding参数,bytearray() 会使用 str.encode() 方法来将 string 转变成 bytes
- int ,如果source是int,会初始化大小为该数字的数组,并使用 null 字节填充
- 如果是一个遵循 缓冲区接口 的对象,该对象的只读缓冲区将被用来初始化字节数组
- iterable 可迭代对象, 要求元素的范围必须是 0 <= x < 256 的整数,它会被用作数组的初始内容
- 如果没有传入source参数,则返回一个长度为0的bytes数组
示例代码1:
print(bytes())print(bytes("I love python", encoding='utf-8'))print(bytes(6))print(bytes([11, 22, 33]))
运行结果:
示例代码2:
s = 'I love python!'print(s)a = s.encode(encoding='utf-8')print(a)b = bytes(s, encoding='utf-8')print(b)c = a.decode('utf-8')print(c)d = b.decode('utf-8')print(d)
运行结果:
示例代码3:
int_6 = bytes([6])print(int_6)bytes_to_int = int.from_bytes(int_6, 'little')# bytes_to_int = int.from_bytes(int_6, 'big')print(bytes_to_int)int_66 = bytes([66])print(int_66)bytes_to_int = int.from_bytes(int_66, 'little')# bytes_to_int = int.from_bytes(int_66, 'big')print(bytes_to_int)
运行结果:
来源地址:https://blog.csdn.net/weixin_44799217/article/details/129109112
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341