continue break pass python inshort code example
Example 1: python get out of loop
while True:
print('I run!')
break
print('Not in loop!')
Example 2: python exit for loop
# python 3
for x in range(1, 10):
print(x)
if x == 4:
break
# prints 1 to 4