摘要: 1 q = queue.Queue() 2 3 def producer(task): 4 q.put(task) 5 6 7 def consumer(): 8 while True: 9 task = q.get() 10 p = multiprocessing.Process(target=c 阅读全文
posted @ 2020-04-16 10:31 网络迷途者 阅读(764) 评论(0) 推荐(0) 编辑