What is the output of the following code ?
p = {0: 'x', 1: 'y', 2: 'z'} for i in p: print(i)
0 x 1 y 2 z
x y z
0 1 2
None of the above
When dictionary used as iterator, for loop iterate over keys
Comment here: