while loop python example
Example 1: python do while
i = 1
while True:
print(i)
i = i + 1
if(i > 3):
break
Example 2: python while
python_is_cool = True
while python_is_cool:
print("I love python!")
Example 3: how to write a while statement in python
myvariable = 10
while myvariable > 0:
print(myvariable)
myvariable -= 1
Example 4: python while loop
while <condition>:
<run code here>
i = 0
while True:
i += 1
while i == -1:
print("impossible!")
Example 5: how to do a while loop python
while True:
Example 6: python do while loop
i = 1
while True:
print(i)
i = i + 1
if(i > 3):
break