Answers for "how to make programe still work while sleep in python"

9

sleep in python 3

#!/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
Posted by: Guest on September-27-2020
0

waiting in python. time , sleep

from time import sleep, time
sleep(1) # it is gonna sleep 1 sec. you can change the time if you want

# --- there are two ways you can do it. you can choose whatever you want

import time 
time.sleep(1) # it is gonna sleep 1 sec. you can change the time if you want
Posted by: Guest on February-07-2022

Code answers related to "how to make programe still work while sleep in python"

Python Answers by Framework

Browse Popular Code Answers by Language