“Co to jest, gdy pętle w Pythonie” Kod odpowiedzi

Python robi

# 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

Jak napisać trochę czasu w Pythonie

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

Pyton to When Loop

#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

Co to jest, gdy pętle w Pythonie

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

Odpowiedzi podobne do “Co to jest, gdy pętle w Pythonie”

Pytania podobne do “Co to jest, gdy pętle w Pythonie”

Więcej pokrewnych odpowiedzi na “Co to jest, gdy pętle w Pythonie” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu