sommeil python
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
Batman
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
#!/usr/bin/python3
import time
print ("Start : %s" % time.ctime())
time.sleep( 5 )
print ("End : %s" % time.ctime())
import time
#Your code here before the sleep function
time.sleep("""The amount you want to sleep for in seconds""")
#Your code here after the sleep function