whie loop code example
Example 1: while loop in python
#there are 2 ways to make a while loop in python
#first way -
while True:
(#what ever you want in the loop)
#second way -
while 1:
(#what ever you want in the loop)
Example 2: while loop python
# while loop (python)
i = 0
while i < 10:
i +=1 #or i = i + 1
print(i)