while loop pythno code example

Example 1: python do while

# Python does not have a do-while loop. You can however simulate
# it by using a while loop over True and breaking when a certain
# condition is met.
# Example:
i = 1
while True:
    print(i)
    i = i + 1
    if(i > 3):
        break

Example 2: how to use a while loop in python

x = True

#While the condition is true the code inside the while loop will execute
#Once to condition is false the loop will break and the code past the while loop
#will execute
while x == True:
	print("x is true")
print("If this prints then x is not true")