Python学习之python基础week4-2
Posted soulgou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习之python基础week4-2相关的知识,希望对你有一定的参考价值。
1、bytes与bytearray
# 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‘x00x00x00x00x00x00x00x00x00x00‘; (5)bytes() -> empty bytes object # 创建空bytes;
# 注意:bytes类型,使用b前缀定义;
只允许基于ASCII使用字符串形式b‘abc9‘表示
使用16进制表示b‘x41x61‘
(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‘x00x00x00x00x00‘)
2、字符编码
以上是关于Python学习之python基础week4-2的主要内容,如果未能解决你的问题,请参考以下文章