A while loop in Python is used for what type of iteration? code example
Example: 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")