Python3 的基本数据结构

Python3: Built-in Types 介绍了 Python3 支持的所有数据类型,以及适用的操作符:

boolean
numeric         --> int、float、complex
iterator        --> generator
sequence        --> list、tuple、range
text sequence   --> str
binary sequence --> bytes、bytearray、memoryview
set             --> set、frozenset
map             --> dict

string、numeric 等基本类型的定义语法见 Python3: Literals

最常关注和使用的是 sequence 类型的数据结构:

  • list(列表/数组)
  • tuple(元组)
  • sequence(序列)
  • set (集合)
  • dictionary (字典/map)

参考