python while example
Example 1: python while
python_is_cool = True
while python_is_cool:
print("I love python!")
Example 2: 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 3: how to write a while statement in python
myvariable = 10
while myvariable > 0:
print(myvariable)
myvariable -= 1
Example 4: while loop python
while (condition):
doThis();
Example 5: python do while loop
i = 1
while True:
print(i)
i = i + 1
if(i > 3):
break
Example 6: Python While Loops
i = 1
while i < 6:
print(i)
if i == 3:
break
i += 1