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
1
Answer:
output :
1
2
3
4
Explanation:
...............
Similar questions