While loop example

Example 1: python while loop

while <condition>:
  <run code here>
  
# for example,
i = 0
while True:
  i += 1
  # i will begin to count up to infinity
while i == -1:
  print("impossible!")

Example 2: python while loop

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

Example 3: while loop in python

#Make a variable containing an integer like shown below:
i=1
while i<=6:
  print ("Hello")
#This loop will go on forever and the only way to stop it is to kill your program

Example 4: while loop

var i=1;
while(i<=10){
document.write(i + "<br>");
i++;}

Example 5: while loop

i = 0

while i < 6:

    i += 1

  if i == 3:
    continue
  print(i)

Example 6: python while loop

while whatitis:
  #code goes here no comment