📜  如何多线程python代码示例

📅  最后修改于: 2022-03-11 14:45:25.590000             🧑  作者: Mango

代码示例1
from Threading import Thread

def thread_fn():
    # do stuff here. 
    
num_threads = 10
for i in range(num_threads):
    t = Thread(target=thread_fn, args=[]) # args[] contains function arguments
    t.start()                             # thread is now running!
    threads.append(t)                     # hold onto it for it later

for t in threads:
    t.join()                              # waits for each t to finish