I will talk about collections in Python.
- Sets: set, frozenset.
- Sequences: tuple, named tuples, list, deque (we will just mention str and bytes).
- Mappings: dict, defaultdict, OrderedDict, Counter, ChainMap.
I will assume at least a basic knowledge of set, tuple, list and dict.