how to call a function in a while loop python code example

Example 1: 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")

Example 2: how to use a while loop in python

x = True

#While the condition is true the code inside the while loop will execute
#Once to condition is false the loop will break and the code past the while loop
#will execute
while x == True:
	print("x is true")
print("If this prints then x is not true")