Answers for "Python while loop"

49

python do while

# Python does not have a do-while loop. You can however simulate
# it by using a while loop over True and breaking when a certain
# condition is met.
# Example:
i = 1
while True:
    print(i)
    i = i + 1
    if(i > 3):
        break
Posted by: Guest on March-03-2020
3

python while loop

# A while loop is basically a "if" statement that will repeat itself
# It will continue iterating over itself untill the condition is False

python_is_cool = True
first_time = True

while python_is_cool:
	if first_time:
		print("python is cool!")
    else:
      first_time = False
      
print("Done")

# The while loop can be terminated with a "break" statement.
# In such cases, the "else" part is ignored. 
# Hence, a while loop's "else" part runs if no break occurs and the condition is False.
# Example to illustrate the use of else statement with the while loop:
  
counter = 0

while counter < 3:
    print("Inside loop")
    counter = counter + 1
else:
    print("Inside else")
Posted by: Guest on May-03-2021
10

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!")
Posted by: Guest on May-15-2020
3

python while loop

while <Condition>:
  <code>
  
  #example
  i = 10
  while i == 10:
    print("Hello World!")
Posted by: Guest on August-04-2020
0

Python while loop

i = 0
while i < 10:
    print(i)
    i += 1
Posted by: Guest on July-10-2021
-1

python while loop

while whatitis:
  #code goes here no comment
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language