break, continue python code example
Example 1: python exit for loop
# python 3
for x in range(1, 10):
print(x)
if x == 4:
break
# prints 1 to 4
Example 2: break python
# Use of break statement inside the loop
for val in "string":
if val == "i":
break
print(val)
print("The end")
---------------------------------------------------------------------------
s
t
r
The end