how to end a loop in python code example

Example 1: how to break a loop in python

x = 0
while True:
    x += 1
    if x == 10:
        break

Example 2: how to exit a loop in python

print("enter a number")
num=int(input())
for i in range(2,num+1):
    if(num%i==0):
        print("smallest divisor is",i)
        break

Example 3: hwo to end a for loop [ython

for x in range (0, 20 + 1, 5):
    print(x)
    if x == 20: break

print('bob')

"""
output:

0
5
10
15
20
bob

"""

#I hope it helps! -Andrew Ma

#make sure when you print bob don't indent or else
it will think it is part of the for loop! :)

Example 4: how to end a loop in python

#the loop
for x in (1, 10, 1):
  #type break to end loop before loop stops
  break

Example 5: break function python

if( x > 3):
  print('X is greater than 3')
else:
  break

Tags:

Misc Example