Skip to content

Instantly share code, notes, and snippets.

@hicl
Created November 17, 2013 08:28
Show Gist options
  • Save hicl/7510830 to your computer and use it in GitHub Desktop.
Save hicl/7510830 to your computer and use it in GitHub Desktop.
some hints about how using a time delay in Python
# one way:
from time import sleep
sleep(t) # --> (t) is an integer and it describes the time variable in seconds
# another way:
import time
time.sleep(t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment