Answers for "stop python code after an amount of time"

3

how to stop python for certain time in python

import time
How_long = 5
time.sleep(How_long)
print("Look I got printed after 5 seconds")
Posted by: Guest on August-25-2021

Code answers related to "stop python code after an amount of time"

Python Answers by Framework

Browse Popular Code Answers by Language