Answers for "how to stop loop in python"

5

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.')
Posted by: Guest on February-24-2020
1

continue in python

# Example of continue loop:

for number is range (0,5):
    # If the number is 4, skip the rest of the loop and continue from the top.
    if number == 4:
      continue
    
    print(f"Number is: {number}")
Posted by: Guest on November-22-2020
1

how to break a loop in python

x = 0
while True:
    x += 1
    if x == 10:
        break
Posted by: Guest on April-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language