Run
my_dict = { 'apple': 10, 'banana': 20, 'cherry':30 } for key in my_dict: value = my_dict[key] print(key, value)
Output