how to use continue statement in python with while loop code example

Example 1: python continue

for i in range(10):
  if i == 3: # skips if i is 3
    continue
  print(i)

Example 2: python while continue

## When the program execution reaches a continue statement, 
## the program execution immediately jumps back to the start 
## of the loop.
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:
  #code
except:
  #pass to continue loop or error handling
  pass
else:
  #code
  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":
    # do something
    print("doing something")