美文网首页
Python 序列类型 (1) - 序列类型分类

Python 序列类型 (1) - 序列类型分类

作者: DejavuMoments | 来源:发表于2018-12-01 18:29 被阅读12次

    Python中的序列类型包括:

    • 容器序列
    • 扁平序列
    • 可变序列
    • 不可变序列

    容器序列

    list
    tuple
    deque

    扁平序列

    str
    bytes
    bytearray
    array.array

    可变序列

    list
    deque
    bytearray
    array.array

    不可变序列

    一旦创建就不可被修改。
    str
    tuple
    bytes

    相关文章

      网友评论

          本文标题:Python 序列类型 (1) - 序列类型分类

          本文链接:https://www.haomeiwen.com/subject/mjzlcqtx.html