欢迎您 本站地址:  

Python3 bytes 函数

Python3 内置函数 Python3 内置函数


描述

bytes 函数返回一个新的 bytes 对象,该对象是一个 0 <= x < 256 区间内的整数不可变序列。它是 bytearray 的不可变版本。

语法

以下是 bytes 的语法:

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

参数

返回值

返回一个新的 bytes 对象。


实例

以下展示了使用 bytes 的实例:

实例

>>>a = bytes([1,2,3,4]) >>> a b'\x01\x02\x03\x04' >>> type(a) <class 'bytes'> >>> >>> a = bytes('hello','ascii') >>> >>> a b'hello' >>> type(a) <class 'bytes'> >>>

Python3 内置函数 Python3 内置函数

小库提示

扫描下方二维码,访问手机版。