Created
August 31, 2018 19:33
-
-
Save tylerfowle/5b671a2069d183d780250d2c2c8079d5 to your computer and use it in GitHub Desktop.
python threading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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