SoFunction
Updated on 2025-03-02

Example analysis of sleep function usage example in python

This article describes the usage of sleep function in python. Share it for your reference. The details are as follows:

Sleep in Python is used to pause thread execution, in seconds

#-----------------------------------
#      Name: 
#     Author: Kevin Harris
# Last Modified: 02/13/04
#  Description: This Python script demonstrates
#         how to use the sleep()
#         function.
#-----------------------------------
from time import sleep
print( "We'll start off by sleeping 5 seconds" )
sleep( 5 )
print( "Ok, time to wake up!" )
wait_time = int( input( "How much longer would you like to sleep? " ) )
while wait_time > 0:
  print("Ok, we'll sleep for "+str(wait_time)+" more seconds...")
  sleep( wait_time )
  wait_time = int(input("How much longer would you like to sleep?"))
print( "We're done!" )

I hope this article will be helpful to everyone's Python programming.