小码哥的IT人生

Python bytearray() 函数

Python基础 2022-06-06 14:29:00小码哥的IT人生shichen

Python bytearray() 函数

实例

返回 5 个字节的数组:

x = bytearray(5)

完整实例:

x = bytearray(5)
print(x)

定义和用法

bytearray() 函数返回 bytearray 对象。

它可以将对象转换为 bytearray 对象,或者创建指定大小的空字节数组对象。

语法

bytearray(x, encoding, error)

参数值

参数 描述
x

创建 bytearray 对象时使用的资源

如果是整数,则会创建指定大小的空 bytearray 对象。

如果是字符串,请确保规定了资源的编码。

encoding 字符串的编码
error 规定若编码失败要做什么。

相关页面

参考手册:bytes() 函数

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024