Python attendez 1 sec
import time
# Wait for 5 seconds
time.sleep(5)
# Wait for 300 milliseconds
# .3 can also be used
time.sleep(.300)
Blushing Bat
import time
# Wait for 5 seconds
time.sleep(5)
# Wait for 300 milliseconds
# .3 can also be used
time.sleep(.300)
import time
while True:
print("This prints once a minute.")
time.sleep(60) # Delay for 1 minute (60 seconds).
import time
#Waits 1 second
time.sleep(1)
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
import time
time.sleep(5) # sleeps for 5 seconds
time.import
time.sleep(x)