Collections in Python

Speaker : François Durand
Nokia Bell Labs
Date: 16/09/2020
Time: 11:00 am - 12:00 pm

Abstract

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.