“Python während der Weiter” 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 geht weiter

nums = [7,3,-1,8,-9]
positive_nums = []

for num in nums:
    if num < 0: #skips to the next iteration
        continue
    positive_nums.append(num)
        
print(positive_nums) # 7,3,8
MitroGr

Setzen Sie die Aussage Python fort

import numpy as np
values=np.arange(0,10)
for value in values:
  if value==3:
    continue
  elif value==8:
    print('Eight value')
  elif value==9:
    break
Tremendous Enceladus

Während der Schlaufe in Python für Wünscherst du weiter

while input("Do You Want To Continue? [y/n]") == "y":
    # do something
    print("doing something")
Clear Camel

Während der Schlaufe in Python für Wünscherst du weiter

while True:
    # some code here
    if input('Do You Want To Continue? ') != 'y':
        break
Clear Camel

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

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

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen