retard de temps python
import time
while True:
print("This prints once a minute.")
time.sleep(60) # Delay for 1 minute (60 seconds).
Dangerous Dugong
import time
while True:
print("This prints once a minute.")
time.sleep(60) # Delay for 1 minute (60 seconds).
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
import time
time.sleep(5) # sleeps for 5 seconds
#!/usr/bin/python3
import time
print ("Start : %s" % time.ctime())
time.sleep( 5 )
print ("End : %s" % time.ctime())
# Start : Mon Feb 15 12:08:42 2016
# End : Mon Feb 15 12:08:47 2016
#!/usr/bin/python3
import time
print ("Start : %s" % time.ctime())
time.sleep( 5 )
print ("End : %s" % time.ctime())
import time
for c in range (10, -1, -1):
print(c)
time.sleep(1.0)
print('*' * 21)
print(f'FELIZ ANO NOVO !!!!!!')
print('*' * 21)