190715 Python 内置函数之bytearray

文章目录
  1. II. 其他
    1. 1. 一灰灰Blog: https://liuyueyi.github.io/hexblog
    2. 2. 声明
    3. 3. 扫描关注

返回一个新字节数组。这个数组里的元素是可变的,并且每个元素的值范围: 0 <= x < 256

语法:

1
class bytearray([source[, encoding[, errors]]])

参数说明:

  • source
    • 为整数,则返回一个长度为source的初始化数组
    • 字符串,则按照指定的 encoding 将字符串转换为字节序列
    • 迭代类型,则元素必须为[0,255]之间的整数
    • 无参数,初始化数组个数为0

实例

1
2
3
4
5
6
7
8
9
10
>>> bytearray('hello', 'utf-8')
bytearray(b'hello')
>>> bytearray(2)
bytearray(b'\x00\x00')
>>> bytearray([1,2,3])
bytearray(b'\x01\x02\x03')
>>> a = bytearray([1,2,3])
>>> a[1] = 20
>>> a
bytearray(b'\x01\x14\x03')

II. 其他

1. 一灰灰Bloghttps://liuyueyi.github.io/hexblog

一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛

2. 声明

尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激

3. 扫描关注

一灰灰blog

QrCode

# Python

评论

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×