# 单线程
from threading import Thread
p =Thread(target=func, args=("arguments",)) p.start() p.join() # 等待子进程结束后再继续往下运行
# 线程池
from concurrent.futures import ThreadPoolExecutor
''' 线程池: map:接收一个函数,和一个参数元组,遍历元组,执行len(元组)次线程 submit:接收一个函数和参数,执行一次线程 :return: ''' with ThreadPoolExecutor(10) as tpe: # args = map(lambda i:'