- Learn Web Development with Python
- Fabrizio Romano Gaston C. Hillar Arun Ravindran
- 64字
- 2021-06-10 18:26:02
The collections module
When Python general purpose built-in containers (tuple, list, set, and dict) aren't enough, we can find specialized container datatypes in the collections module. They are:

We don't have the room to cover all of them, but you can find plenty of examples in the official documentation, so here I'll just give a small example to show you namedtuple, defaultdict, and ChainMap.