Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Python Sleep function
- #Example 1
- time.sleep(5) # sleeps for 5 seconds
- #Example 2
- time.sleep(0.5) #sleeps for a half second
- #Example 3
- from time import sleep
- sleep(Num of seconds to sleep)
- #Example 4
- import time
- while True:
- print "This prints once a minute."
- time.sleep(60) # Delay for 1 minute (60 seconds)
- #Example 5
- import time
- time.sleep(Num of seconds to sleep)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement