Back Navigation Next Navigation Video 6: Lists Tuples Dictionaries (page 13 of 14)

With a dictionary object, we may loop over just the keys using .keys(), just the values using .values(), or both the keys & values using .items(). We will probably use .items() most frequently.

Dictionaries