if continue python code example
Example 1: continue python
The continue statement in Python returns the control to the beginning of the
while loop. The continue statement rejects all the remaining statements
in the current iteration of the loop and moves the control back to the top of
the loop.
The continue statement can be used in both while and for loops.
Example 2: python continue
for i in range(10):
if i == 3:
continue
print(i)
Example 3: python get out of loop
while True:
print('I run!')
break
print('Not in loop!')
Example 4: 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 5: python break for loop
for x in range(5):
print(x * 2)
if x > 3:
break
Example 6: 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.')