how to use continue statement in python with while loop code example
Example 1: python continue
for i in range(10):
if i == 3:
continue
print(i)
Example 2: 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 3: python try except continue loop
try:
except:
pass
else:
pass
finally:
pass
Example 4: while loop in python for do you want to continue
while input("Do You Want To Continue? [y/n]") == "y":
print("doing something")