Python's collections

python

These are the most commonly used collections:

  Immutable Mutable
Sequence tuple, str, bytes list, bytearray
Set frozenset set
Mapping   dict

Or shown in a heirarchy:

Sequence

Set

Mapping