“Was sind während der Schleifen in Python?” 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

Pyton machen während der Schleife

#there is no do while loop in python but you san simulate it
i = 1  
  
while True:  
    print(i)  
    i = i + 1  
    if(i > 5):  
        break  
Programmer of empires

Was sind während der Schleifen in Python?

myvariable = 10
while myvariable > 0:
  print(myvariable)
  myvariable -= 1
  
Smita Nandedkar

Ähnliche Antworten wie “Was sind während der Schleifen in Python?”

Fragen ähnlich wie “Was sind während der Schleifen in Python?”

Weitere verwandte Antworten zu “Was sind während der Schleifen in Python?” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen