Comment faire une boucle pour toujours dans Python
# The While Loop
while True:
print("This will continue printing until the code returns False.")
c00lhawk607
# The While Loop
while True:
print("This will continue printing until the code returns False.")
#Infinite Loop in Python
i = True
while i == True:
print("I will run forever and probably crash python in a few minutes")