Computer Science, asked by sanjayharish360, 3 months ago

what is the output of the following snippet
i = 1
while True:
if i%5 = = 0:
break
print(i,end=")
i+=1​

Answers

Answered by app70
1

Answer:

output :

1

2

3

4

Explanation:

...............

Similar questions