avatar
Bikash Daga
0

Codes

1

Answers

Code compilers

Top answers

0
do while python
March-23-2022
i = 10
while True:
   print(i)
   i+=1
   if not i<10:
       break

# Out of this is 10