What will be the output of the following Python code? my_dict = {'a': 1, 'b': 2, 'c': 3} for key in my_dict: print(key, end=' ') print() a) a b c b) 1 2 3 c) a: 1 b: 2 c: 3 d) a b c 1 2 3
7
2
9
2K
4