For loop in 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 in python
j = 0
while j < 3:
print("hello")
j += 1
Example 3: python while loop
while <condition>:
<run code here>
i = 0
while True:
i += 1
while i == -1:
print("impossible!")
Example 4: python while loop
while <Condition>:
<code>
i = 10
while i == 10:
print("Hello World!")
Example 5: python do while loop
i = 1
while True:
print(i)
i = i + 1
if(i > 3):
break