码迷,mamicode.com
首页 > 编程语言 > 详细

Python学习之python基础week4-2

时间:2018-08-17 12:52:49      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:mutable   数组   iter   table   class   ram   字符串   mmu   编码   

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‘\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‘)

2、字符编码

 

Python学习之python基础week4-2

标签:mutable   数组   iter   table   class   ram   字符串   mmu   编码   

原文地址:https://www.cnblogs.com/soulgou123/p/9492641.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!