python how to stop a loop code example
Example 1: 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 2: break function python
if( x > 3):
print('X is greater than 3')
else:
break