1.

. What is the output of the following code? a={1:"A",2:"B",3:"C"} for i in a: print(i,end=" ")

A. 1 2 3
B. ‘A’ ‘B’ ‘C’
C. 1 ‘A’ 2 ‘B’ 3 ‘C’
D. Error, it should be: for i in a.items():
Answer» B. ‘A’ ‘B’ ‘C’


Discussion

No Comment Found