标签: python
这是一个新手问题。我从主线程开始10个线程。如何阻止主线程继续,直到所有其他线程完成?
答案 0 :(得分:7)
Join所有主题:
for t in threads: t.join()
此处threads是您的主题列表。
threads