Dictionary operations, iteration, and methods
Dictionaries map keys to values and are optimized for fast lookup, update, and membership by key.
- Iterate with keys, values, or items
- Lookups are usually average O(1)
- Methods like `get` make code safer
Dictionary operations, iteration, and methods