“python enquanto quebra de loop” Respostas de código

Python enquanto continua

## 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.')
SkelliBoi

python enquanto quebra de loop

import random

# This loop will run forever unless we break it
while True:
    # Generate a random int between 1 and 10
    random_integer = random.randint(1, 10)
    print(random_integer)
    # Stop the loop if the random int is 5
    if random_integer == 5:
        break
Outrageous Oyster

Respostas semelhantes a “python enquanto quebra de loop”

Perguntas semelhantes a “python enquanto quebra de loop”

Mais respostas relacionadas para “python enquanto quebra de loop” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código