Run
dictionary = {'a': 1, 'b': 2, 'c':3} for key,value in dictionary.items(): print(key, ':', value)
Output