9951 explained code solutions for 126 technologies


pythonHow to sleep for specific number of seconds


import time
time.sleep(10)

# code after waiting...ctrl + c
time

module with time functions

sleep

will wait for specified number of seconds before next

10

sleep for 10 seconds in our case