Chapter 9: Dictionaries Dictionaries store data in key-value pairs. Example Python1 2 3 4 5person = { "name": "Alice", "age": 30, "city": "New York" } You can access values by using their keys, like person["name"].