Home / Python / Day 3: Data Structures / Dictionaries

Dictionaries

Dictionaries store key-value pairs — the most powerful and commonly used Python data structure.

Python Dictionaries

Dictionaries store data in key-value pairs. Keys must be unique and immutable. Dictionaries are ordered (Python 3.7+) and mutable.