exit outer loop python code example
Example 1: 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 2: python exit while loop
while (True):
# ...
break