The items() method returns key-value pairs as tuples: python person = {"name": "Alice", "age": 30} for key, value in person.items(): print(f"{key}: {value}") Output: name: Alice age: 30 This is the most common way to iterate when you need both key and value.
The tuple unpacking makes it clean.