Python : Delay with time.sleep() function example
It has been a while since I look at Python code. Need to read up a legacy code left by the previous developer and do some minor adjustment to the existing source code.
Basic stuff, nothing to deep or complicated. Just need to introduce delay into the code.
Here is an example on how to use Python's time module to delay execution.
import time
def main():
print("The time is : " + time.strftime("%c"))
time.sleep(10) # delay for 10 seconds
print("After 10 seconds, the time is now : " + time.strftime("%c"))
if __name__ == '__main__':
main()
Sample output :
The time is : Fri Oct 23 09:51:28 2015
After 10 seconds, the time is now : Fri Oct 23 09:51:38 2015
Reference :
See also : Golang : Call a function after some delay(time.Sleep and Tick)
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17.5k Golang : Login and logout a user after password verification and redirect example
+4.9k PHP : See installed compiled-in-modules
+28.8k Golang : Saving(serializing) and reading file with GOB
+7.2k Golang : Get YouTube playlist
+10.2k Golang : Create matrix with Gonum Matrix package example
+33.3k Golang : All update packages with go get command
+6.3k Golang : Totalize or add-up an array or slice example
+17.1k Golang : Linked list example
+8.7k Golang : automatically figure out array length(size) with three dots
+6.4k Golang : Output or print out JSON stream/encoded data
+9.9k Golang : How to get quoted string into another string?
+9.1k Golang : Find the length of big.Int variable example