Answers for "wait fuction in pythin"

33

python sleep

import time

print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
Posted by: Guest on July-27-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