摘要: 生产者消费者模式 import time def consumer(name): print("%s 准备吃包子啦!" %name) while True: baozi = yield print("包子[%s]来了,被[%s]吃了!" %(baozi,name)) def producer(nam 阅读全文
posted @ 2021-04-22 09:03 ty1539 阅读(44) 评论(0) 推荐(0) 编辑