“Cómo hacer un bucle infinito en Python” Código de respuesta

Cómo hacer un bucle para siempre en Python

# The While Loop

while True:
  print("This will continue printing until the code returns False.")
c00lhawk607

Cómo hacer una pitón de bucle infinito

while True:
    print("Hello, World") 


#or

x=3 
while x+3==6:
  print("Hello, World")


# you just have to make you condition is something that alwas true,
#for example: 1+1 > 0 or 0 < 5
RSteepbroR

Infinito para la pitón de bucle

for _ in iter(int, 1):
    pass
Stanley Saavedra

Cómo hacer un bucle infinito en Python

while 1/True:
  #whatever command u wish to use
Coder#137

Respuestas similares a “Cómo hacer un bucle infinito en Python”

Preguntas similares a “Cómo hacer un bucle infinito en Python”

Más respuestas relacionadas con “Cómo hacer un bucle infinito en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código