資料型別¶
本章節所描述的模組 (module) 提供了多樣的專門資料型別,例如日期與時間、固定型別陣列 (fixed-type arrays)、堆積佇列 (heap queues)、雙端佇列 (double-ended queues) 與枚舉 (enumerations)。
Python 也有提供一些內建資料型別,特別是 dict
、list
、set
與 frozenset
和 tuple
。str
類別是用來儲存 Unicode 字串,bytes
與 bytearray
類別則是用來儲存二進位制資料。
本章節包含下列模組的文件:
datetime
--- 日期與時間的基本型別zoneinfo
--- IANA 时区支持calendar
--- 日历相关函数collections
--- 容器資料型態collections.abc
--- 容器的抽象基类heapq
--- 堆積佇列 (heap queue) 演算法bisect
--- 陣列二分演算法 (Array bisection algorithm)array
--- 高效率的數值型陣列weakref
--- 弱引用types
--- 动态类型创建和内置类型名称copy
--- 淺層 (shallow) 和深層 (deep) 複製操作pprint
--- 数据美化输出reprlib
--- 另一种repr()
实现enum
--- 对枚举的支持graphlib
--- 操作类似图的结构的功能