“comment faire une boucle infinie en python” Réponses codées

Comment faire une boucle pour toujours dans Python

# The While Loop

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

Comment faire une boucle infinie Python

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

Infini pour Loop Python

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

comment faire une boucle infinie en python

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

Réponses similaires à “comment faire une boucle infinie en python”

Questions similaires à “comment faire une boucle infinie en python”

Plus de réponses similaires à “comment faire une boucle infinie en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code