“Infinito para o loop python” Respostas de código

infinito enquanto loop em python

while True:
	//Code which has to be repeted infinite times.
Ved

Como fazer um python de loop 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 enquanto python

#infinite While on Python

while True:
  print('Hello World!')
Panicky Pelican

Infinito para o loop python

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

Como fazer um loop infinito em python

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

Respostas semelhantes a “Infinito para o loop python”

Perguntas semelhantes a “Infinito para o loop python”

Mais respostas relacionadas para “Infinito para o loop python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código