Answers for "how to stop infinite loop in python"

3

how to make an infinite loop python

while True: # This calls for an infinite loop
    print("Hello, World") 
    # Stuff that is under this loop will go on for forever.
    # Unstead of "True" you can insert anything -
    # that you want just like using an "if". 
    #It just like "if" but it goes on forever. For example:
    
x=3 # or anything like input....
while x+3==6:
  print("Hello, World")
Posted by: Guest on September-09-2021
0

how to end an infinite loop in specific time python

import time

# timeout variable can be omitted, if you use specific value in the while condition
timeout = 300   # [seconds]

timeout_start = time.time()

while time.time() < timeout_start + timeout:
    test = 0
    if test == 5:
        break
    test -= 1
Posted by: Guest on May-14-2020

Code answers related to "how to stop infinite loop in python"

Python Answers by Framework

Browse Popular Code Answers by Language