Answers for "how to make a for loop go forever in python"

1

how to make a forever loop in python

#Infinite Loop in Python

i = True
while i == True:
  print("I will run forever and probably crash python in a few minutes")
Posted by: Guest on December-13-2021
2

how to make a forever loop in python

# The While Loop

while True:
  print("This will continue printing until the code returns False.")
Posted by: Guest on October-26-2020

Code answers related to "how to make a for loop go forever in python"

Python Answers by Framework

Browse Popular Code Answers by Language