Python3 bytes 函数
Posted AI大道理
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 bytes 函数相关的知识,希望对你有一定的参考价值。
Python3 bytes 函数
描述
bytes 函数返回一个新的 bytes 对象,该对象是一个 0 <= x < 256 区间内的整数不可变序列。它是 bytearray 的不可变版本。
语法
以下是 bytes 的语法:
class bytes([source[, encoding[, errors]]])
参数
- 如果 source 为整数,则返回一个长度为 source 的初始化数组;
- 如果 source 为字符串,则按照指定的 encoding 将字符串转换为字节序列;
- 如果 source 为可迭代类型,则元素必须为[0 ,255] 中的整数;
- 如果 source 为与 buffer 接口一致的对象,则此对象也可以被用于初始化 bytearray。
- 如果没有输入任何参数,默认就是初始化数组为0个元素。
返回值
返回一个新的 bytes 对象。
实例
以下展示了使用 bytes 的实例:
实例
>>>a = bytes([1,2,3,4]) >>> a b‘x01x02x03x04‘ >>> type(a) <class ‘bytes‘> >>> >>> a = bytes(‘hello‘,‘ascii‘) >>> >>> a b‘hello‘ >>> type(a) <class ‘bytes‘> >>>
以上是关于Python3 bytes 函数的主要内容,如果未能解决你的问题,请参考以下文章
读取 csv 函数以在 python2 和 python3 中工作(unicode -vs bytes-like object)