Hello dear readers! Welcome back to another edition of our tutorial on Python. In this tutorial guide, we are going to be studying about the Python Time sleep() method.
The Python Time sleep() function stops execution for the given number of seconds. The argument may be a floating point number for indicating a more precised sleep time.
The actual suspension time may be less than that required because any caught signal is going to terminate the sleep() following the execution of that signal's catching routine.
The Python Time sleep() function stops execution for the given number of seconds. The argument may be a floating point number for indicating a more precised sleep time.
The actual suspension time may be less than that required because any caught signal is going to terminate the sleep() following the execution of that signal's catching routine.
Syntax
The following below is the syntax for using the Python Time sleep() method -
time.sleep( t )
RECOMMENDED POST: Python Time mktime() Method with example
Parameter Details
- t - The number of seconds execution to be suspended.
Return Value
It does not return any value.
Example
The following below is a simple example -
#!/usr/bin/python import time print "Start : %s" % time.ctime() time.sleep( 5 ) print "End : %s" % time.ctime()
Output
Below is the output of the above example -
Start : Thu Jul 16 09:40:36 2020 End : Thu Jul 16 09:40:41 2020
RECOMMENDED POST: Python Time clock() Method with example
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial, we are going to be studying about the Python Time strftime() method.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.