While Loops
While Loops
while <condition is true>:
# do something
else:
# do something else...# This is an infinite loop:
x = 0
while x < 10:
print(x)
else:
print("x is not less than 10")# This is an infinite loop:
x = 0
while x < 10:
print(x)
x = x + 1 # This will add 1 every time the loop runs
# Can also do x += 1
# To add 3 you can do x += 3
else:
print("x is not less than 10")Last updated