pxc3110
0
Q:

while loop in python for do you want to 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.')
4
while True:
    # some code here
    if input('Do You Want To Continue? ') != 'y':
        break
0
while input("Do You Want To Continue? [y/n]") == "y":
    # do something
    print("doing something")
0

New to Communities?

Join the community