how to end a for loop in pytho 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: how to end a loop in python
#the loop
for x in (1, 10, 1):
#type break to end loop before loop stops
break