python if else break continue 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 while continue
while True:
print('Who are you?')
name = input()
if name != 'Joe':
continue
print('Hello, Joe. What is the password? (It is a fish.)')
password = input()
if password == 'swordfish':
break
print('Access granted.')
Example 5: 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)