“enquanto python loop” Respostas de código

Python faz enquanto

# 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

Como escrever um tempo declaração em python

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

Faça enquanto estiver em Python

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

enquanto python loop

# While loop counting to 10 in 2's

i = 2

while i <= 10:  # While i is less than or equal 10, it will add 2
  print(i)
  i = i + 2
Helpless Hamster

enquanto python loop

i = 1
while i<10:
 print("hello world")
 i+=1
#note the i++ syntax is not valid in python
Javasper

enquanto python loop

print 0,4
Encouraging Eagle

Respostas semelhantes a “enquanto python loop”

Perguntas semelhantes a “enquanto python loop”

Mais respostas relacionadas para “enquanto python loop” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código