break an if statement python code example
Example 1: python continue
for i in range(10):
if i == 3: # skips if i is 3
continue
print(i)
Example 2: python get out of loop
while True:
print('I run!')
break
print('Not in loop!')
Example 3: skip to next iteration in for loop python
for i in range(1,11):
if i==5:
continue
print (i)
Example 4: how to break an if statement python
number = 0
for number in range(10):
if number == 5:
break # break here
print('Number is ' + str(number))
print('Out of loop')