Q52
What will be the output of the following Python code? a=1:"A",2:"B",3:"C" for i in a: print(i,end=" ")
A.
1 2 3
AnswerB.
A' 'B' 'C'
C.
1 'A' 2 'B' 3 'C'
D.
Error, it should be: for i in a.items():
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board