Report Bug
Qus :

What is the output of the following code?

count=0
while count<3:
	print(count,end=" ")
	count+=1

Qus निम्नलिखित कोड का परिणाम क्या है?

A. 0 1 2
B. 1 2 3
C. 0 1 2 3
D. Error


Solution
A. 0 1 2






Report Bug