Run
my_dict = { 'foo':12, 'bar':14 } for key, value in my_dict.items(): print(key, value)
Output