多进程 2019年9月22日 进程 0条评论 78次阅读 0人点赞 1、queue import threading as td import multiprocessing as mp def job(q,a,b): q.put(a**b) if __name__ == "__main…