OneBite.Dev - Coding blog in a bite size

do a while loop in python

Code snippet on how to do a while loop in python

  i = 5
  
  while i > 0:
    print(i)
    i -= 1

This code sets up a while loop that will print the number 5 and decrement the number each time the loop runs until the number is no longer greater than 0. First, the variable i is set to the value 5. Then, the loop tests if i is greater than 0. If it is, the loop prints the value of i, then decrements i by 1 each time it runs. This loop will repeat until the number is no longer greater than 0, at which point the loop will end.

python