Conceptual

Python Dictionaries

A dict maps hashable keys to values with average O(1) lookup, insertion, and deletion, preserving insertion order. It is Python's native shape for structured records, which is why JSON objects and serialized data round-trip through dicts.