摘要: 使用队列 from threading import Thread from queue import Queue import random import time def produce(q): i = 0 while i<10: num = random.randint(1,10) q.put 阅读全文
posted @ 2021-01-27 17:15 WangSJiNa 阅读(48) 评论(0) 推荐(0)