Explain the working of while loop in python with suitable example.

Example 1: while loops python

while 10 > 8:
  print("Hello")
while not False:
  print("Hello")
while True:
    print("Hello")

Example 2: how to do a while loop python

while True: #True can be replaced with a different condition
  #result

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

Tags:

Misc Example