“Python während der Schleifenpause” Code-Antworten

Python während der Weiter

## 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 während der Schleifenpause

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

Ähnliche Antworten wie “Python während der Schleifenpause”

Fragen ähnlich wie “Python während der Schleifenpause”

Weitere verwandte Antworten zu “Python während der Schleifenpause” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen