What will be the output of this statement?
p = {11: 'a', 12: 'b', 13: 'c'}
for i in p:
print(i)
1
a b c
2
11 12 13
3
a 11 b 12 c 13
4
None of these
What will be the output of this statement?
p = {11: 'a', 12: 'b', 13: 'c'}
for i in p:
print(i)