The time Module
from time import sleep
print("START")
sleep(4) # (where 4 is the number of seconds to pause)
print("END")Last updated
from time import sleep
print("START")
sleep(4) # (where 4 is the number of seconds to pause)
print("END")Last updated