Answers for "how to import time for time.sleep python"

19

wait function python

import time
#Waits 1 second
time.sleep(1)
Posted by: Guest on March-07-2020
4

python wait for x seconds

import time
x = 1 # Put in whatever seconds you want it to wait
time.sleep(x)
Posted by: Guest on July-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language