break continue pass python 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
for x in range(1, 10):
print(x)
if x == 4:
break
Example 3: skip to next iteration in for loop python
for i in range(1,11):
if i==5:
continue
print (i)
Example 4: python break continue
words = ["rain", "sun", "moon", "exit", "weather"]
for word in words:
if word == "exit" :
break;
if word == "moon" :
print("moon is skipped")
continue
print ("This won't be printed")
print (word)