1.

What is the output of the following? d = {0, 1, 2} for x in d: print(x)

A. 0 1 2
B. {0, 1, 2} {0, 1, 2} {0, 1, 2}
C. error
D. none of the mentioned
Answer» B. {0, 1, 2} {0, 1, 2} {0, 1, 2}


Discussion

No Comment Found