Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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")
 
PREVIOUS NEXT
Tagged: #loop #python
ADD COMMENT
Topic
Name
2+4 =