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