Skip to content

Instantly share code, notes, and snippets.

@devhero
Created August 22, 2017 12:00
Show Gist options
  • Save devhero/8293e2f48efc89af7f8ed74bb9787227 to your computer and use it in GitHub Desktop.
Save devhero/8293e2f48efc89af7f8ed74bb9787227 to your computer and use it in GitHub Desktop.
python delayed execution (like setTimeout() in javascript)
from threading import Timer
def exec_func():
print('go!')
Timer(1, exec_func).start()
print('ready?')
# prints:
# >>> ready?
# >>> go!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment