Q:

python code to wait

import time
#Waits 1 second
time.sleep(1)
15
# You need to import time first
import time
#now you have time you can make time wait/sleep
time.sleep(10)
#time will wait/sleep for 10 seconds
1
#Wait in python
#Module required - time
import time
#Wait in for the time you put
time.sleep(0.5)
print('Wait in python')
2
import time

print("Printed immediately.")
time.sleep(2.4)
print("Printed after 2.4 seconds.")
14

New to Communities?

Join the community