Skip to content

Instantly share code, notes, and snippets.

@t27
Created May 22, 2017 08:54
Show Gist options
  • Save t27/f9de03a07c2994cbd7f4310cafd4b31f to your computer and use it in GitHub Desktop.
Save t27/f9de03a07c2994cbd7f4310cafd4b31f to your computer and use it in GitHub Desktop.
import time
from threading import Thread
def myfunc(i):
print "sleeping 5 sec from thread %d" % i
time.sleep(5)
print "finished sleeping from thread %d" % i
for i in range(10):
t = Thread(target=myfunc, args=(i,))
t.start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment