Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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")
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #python #loop
ADD COMMENT
Topic
Name
8+6 =