how iterate through each item in a dict python code example
Example 1: how to iterate over dictionary in python
>>> for key, value in a_dict.items():
... print(key, '->', value)
...
color -> blue
fruit -> apple
pet -> dog
Example 2: iterate through keys in dictionary
for key in dictionary_name: