+1 vote
in Python by
Read the Following program:

d = {0, 1, 2}  

for x in d:  

    print(x)  

What will be the output of this statement?

i) {0, 1, 2} {0, 1, 2} {0, 1, 2}

ii) 0 1 2

iii) Syntax_Error

iv) None of these above
...