+1 vote
in Python by

Read the Following program:

d = {0: 'a', 1: 'b', 2: 'c'}  

for i in d:  

    print(i)  

What will be the output of this statement?

i) a b c

ii) 0 1 2

iii) 0 a   1 b   2 c

iv) None of these above

Related questions

+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
0 votes
asked Jan 19, 2021 in Python by SakshiSharma
...