摘要: import time from multiprocessing import Process, Queue def f(q,qq): for i in range(100): q.put([42, None, 'hello']) qq.put([12,123,124]) time.sleep(2) 阅读全文
posted @ 2022-05-24 10:40 juham 阅读(132) 评论(0) 推荐(0) 编辑