

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following? d = {0: 'a', 1: 'b', 2: 'c'} for i in d: print(i) |
A. | 0 1 2 |
B. | a b c |
C. | 0 a 1 b 2 c |
D. | none of the mentioned |
Answer» B. a b c | |