+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

Related questions

+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
...