Python time sleep() Function

Python time sleep() function is very important to those who learn python. Python is an interpreted, object-oriented, top-level programming language with very dynamic semantics and as such its high-level built in data structures combined with dynamic binding and typing make it very appealing for rapid application dev work. Also for use as a scripting or sticky glue language to connect already existing components together. Pythons sleep simple easy to use and learn syntax highlights readability and consequently reduces the cost of a program maintainability personnel. It supports the use of modules and packages, which entices program molecularity and coding reuse. The Python interpreter and of course the extensive standard library are also available in the source or binary forms without charge for all major platforms, and maybe completely freely distributed out.

More about this sleep python function is below:

Description:

This function suspends execution for the given number of seconds. The argument may be a floating point number to indicate a more precise sleep time.

The actual suspension time may be less than that requested because any caught signal will terminate the sleep() following execution of that signal’s catching routine.

Syntax:

time.sleep(t)
Parameters:

Here is the detail of parameters:

t: This is the number of seconds execution to be suspended.

Example:

#!/usr/bin/python
import time

print “Start : %s” % time.ctime()
time.sleep( 5 )
print “End : %s” % time.ctime()
This produces following result for sleep python:

Start : Tue Feb 17 10:19:18 2009
End : Tue Feb 17 10:19:23 2009

This concludes the information we have gathered on sleep python time function and hope you got all the information you needed.