标签:mutable 数组 iter table class ram 字符串 mmu 编码
# bytes:不可变字节序列; bytearray:字节数组,可变数据类型;
(1)bytes定义
class bytes(object): """ (1)bytes(iterable_of_ints) -> bytes (2)bytes(string, encoding[, errors]) -> bytes (3)bytes(bytes_or_buffer) -> immutable copy of bytes_or_buffer (4)bytes(int) -> bytes object of size given by the parameter initialized with null bytes # 指定字节的bytes,被0填充;
b=bytes(10) # 创建10个字节的bytes;
print(b) # ==> b‘\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00‘; (5)bytes() -> empty bytes object # 创建空bytes;
# 注意:bytes类型,使用b前缀定义;
只允许基于ASCII使用字符串形式b‘abc9‘表示
使用16进制表示b‘\x41\x61‘
(2)bytearray定义
class bytearray(object): """ bytearray(iterable_of_ints) -> bytearray bytearray(string, encoding[, errors]) -> bytearray bytearray(bytes_or_buffer) -> mutable copy of bytes_or_buffer bytearray(int) -> bytes array of size given by the parameter initialized with null bytes bytearray() -> empty bytes array
# b=bytearray(5)
# print(b) # bytearray(b‘\x00\x00\x00\x00\x00‘)
标签:mutable 数组 iter table class ram 字符串 mmu 编码
原文地址:https://www.cnblogs.com/soulgou123/p/9492641.html