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