# Dictionaries: Key-Value Pairs Dictionaries in Python are unordered collections of items stored as key-value pairs. ## Key Features: - Each key must be unique. - They are defined using curly braces {}. Example: my_dict = {name: Alice, age: 25, city: New York} Accessing values: print(my_dict[name]) # Output: Alice