Answers for "run huge for loop in python"

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
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

Python Answers by Framework

Browse Popular Code Answers by Language