0 votes
in Python by
What is the output of the following?

d = {0: 'a', 1: 'b', 2: 'c'}
for i in d:
    print(i)

a. none of the mentioned
b. 0 1 2.
c. a b c
d. 0 a 1 b 2 c

Related questions

0 votes
asked Jun 13, 2019 in Python by Derya
0 votes
asked Jun 13, 2019 in Python by Derya
...