Use square brackets with the key: python person = {"name": "Alice", "age": 30} print(person["name"]) # Alice print(person["age"]) # 30 This looks like list indexing, but instead of a position, you use the key.
If the key doesn't exist, Python raises a KeyError: python print(person["height"]) # KeyError: 'height' Later you'll learn safer ways to handle missing keys.