Answers for "how to stop python for certain time in python"

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 "how to stop python for certain time in python"

Python Answers by Framework

Browse Popular Code Answers by Language