while in for loop python code example

Example 1: how to write a while statement in python

myvariable = 10
while myvariable > 0:
  print(myvariable)
  myvariable -= 1

Example 2: while loop python

# While loop counting to 10 in 2's

i = 2

while i <= 10:  # While i is less than or equal 10, it will add 2
  print(i)
  i = i + 2

Example 3: while loop in python

#there are 2 ways to make a while loop in python

#first way -

while True:
  (#what ever you want in the loop)
    
#second way - 
    
while 1:  
    (#what ever you want in the loop)

Example 4: python while loop

while <Condition>:
  <code>
  
  #example
  i = 10
  while i == 10:
    print("Hello World!")