break continue and pass in python code example
Example 1: python continue
for i in range(10):
if i == 3:
continue
print(i)
Example 2: continue statement python
import numpy as np
values=np.arange(0,10)
for value in values:
if value==3:
continue
elif value==8:
print('Eight value')
elif value==9:
break
Example 3: python exit for loop
for x in range(1, 10):
print(x)
if x == 4:
break
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)