break continue and pass in 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: 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

# python 3

for x in range(1, 10):
    print(x)
    if x == 4:
        break
# prints 1 to 4

Example 4: python break continue

words = ["rain", "sun", "moon", "exit", "weather"]
  
for word in words:
        #checking for the breaking condition
        if word == "exit" :
                #if the condition is true, then break the loop
                break;
        if word == "moon" :
                #this statement will be executed
                print("moon is skipped")
                continue
                #this statement won't be executed
                print ("This won't be printed")  
        #Otherwise, print the word
        print (word)