“Python machen während der Schleife” Code-Antworten

Python machen während

# Python does not have a do-while loop. You can however simulate
# it by using a while loop over True and breaking when a certain
# condition is met.
# Example:
i = 1
while True:
    print(i)
    i = i + 1
    if(i > 3):
        break
SkelliBoi

wie man eine Weile in Python eine Weile schreibt

myvariable = 10
while myvariable > 0:
  print(myvariable)
  myvariable -= 1
Thoughtful Trout

Python machen während der Schleife

# A python equivilant to do-while
n = 0
while True: # Do
  print(n)
  n += 1
  if n%3 == 0: # While
    break
# Output: 0, 1, 2
fmoeran

Python machen während der Schleife

while True:
  //do something
  if (""" break condition """):
    break
slohobo

Python machen während der Schleife

secret_word = "python"
counter = 0

while True:
    word = input("Enter the secret word: ").lower()
    counter = counter + 1
    if word == secret_word:
        break
    if word != secret_word and counter > 7: 
        break
Colorful Copperhead

Python machen während der Schleife

i = 1

while True:
    print(i)
    i = i + 1
    if(i > 3):
        break
TheoTavLeVrai

Ähnliche Antworten wie “Python machen während der Schleife”

Fragen ähnlich wie “Python machen während der Schleife”

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen