“Питон во время перерыва в петле” Ответ

Питон, пока продолжай

## 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

Питон во время перерыва в петле

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

Ответы похожие на “Питон во время перерыва в петле”

Вопросы похожие на “Питон во время перерыва в петле”

Больше похожих ответов на “Питон во время перерыва в петле” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования