Source Code:
(back to article)
my_dict = {'a': 1, 'b': 2, 'c': 3} for key in my_dict: print(key, my_dict[key])
Result:
Report an issue