18 lines
295 B
Python
18 lines
295 B
Python
#!/usr/bin/env python
|
|
|
|
import threading
|
|
import random
|
|
import time
|
|
|
|
|
|
def doit(num): # <1>
|
|
time.sleep(random.randint(1, 3))
|
|
print("Hello from thread {}".format(num))
|
|
|
|
|
|
for i in range(10):
|
|
t = threading.Thread(target=doit, args=(i,)) # <2>
|
|
t.start() # <3>
|
|
|
|
print("Done.") # <4>
|