“¿Qué son los bucles en Python?” Código de respuesta

Python lo hace mientras

# 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

Cómo escribir una declaración de tiempo en Python

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

pyton do mientras bucle

#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

¿Qué son los bucles en Python?

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

Respuestas similares a “¿Qué son los bucles en Python?”

Preguntas similares a “¿Qué son los bucles en Python?”

Más respuestas relacionadas con “¿Qué son los bucles en Python?” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código