for loop to while loop python code example
Example 1: python while loop
python_is_cool = True
first_time = True
while python_is_cool:
if first_time:
print("python is cool!")
else:
first_time = False
print("Done")
counter = 0
while counter < 3:
print("Inside loop")
counter = counter + 1
else:
print("Inside else")
Example 2: while loop python
while (condition):
doThis();
Example 3: while loop python
i = 0
while i < 10:
i +=1
print(i)
Example 4: python do while loop
while True:
//do something
if (""" break condition """):
break