python 实现生产者 消费者案例
摘要:
题目:python起2个进程一个为生产者、一个为消费者(消费者进程中起协程消费) from multiprocessing import Process, Queue import time import random import gevent # 消费者方法 def consumer(q): w 阅读全文
posted @ 2020-11-27 22:19 星河赵 阅读(1135) 评论(0) 推荐(0) 编辑