while in python code example
Example 1: python do while loop
i = 1
while True:
print(i)
i = i + 1
if(i > 3):
break
Example 2: Python While Loops
i = 1
while i < 6:
print(i)
if i == 3:
break
i += 1
i = 1
while True:
print(i)
i = i + 1
if(i > 3):
break
i = 1
while i < 6:
print(i)
if i == 3:
break
i += 1