Report Bug
Qus :

What will be the output of the following code snippet?

d={3,4,5}
for k in d:
	print(k)

Qus

निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?

d={3,4,5}
for k in d:
	print(k)


A. {3, 4, 5},{3, 4, 5}, {3, 4, 5}
B. 3 4 5
C. syntax error
D. None of the above


Solution
B. 3 4 5






Report Bug