“Делай, пока питон” Ответ

Python делает пока

# 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

Как написать заявление о том, как в Python

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

Делаться в Python

There is no direct do while loop in python.
Lala Talishinskaya

Делай, пока питон

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

Делай, пока питон

while <condition>:
    # Do whatever 
Random boi

Делай, пока питон

# do while sample loop in python
# do statements in try while number is < 0
i = 0
number = -1
while number < 0:
    try:
        number = int(input("Enter a number: "))
        print(number)
        i += 1
    except ValueError:
        print("Invalid input")
CARTAÑO, Kirk Cedrick S.

Ответы похожие на “Делай, пока питон”

Вопросы похожие на “Делай, пока питон”

Больше похожих ответов на “Делай, пока питон” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования