课堂练习-python 生成器并行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了课堂练习-python 生成器并行相关的知识,希望对你有一定的参考价值。
import time def consumer(name): print("%s 准备吃包子啦!" %name) while True: baozi = yield print("包子[%s]来了,被[%s]吃了!" %(baozi,name)) def producer(name,name1): c = consumer(name) c2 = consumer(name1) c.__next__() c2.__next__() print("老子开始准备做包子啦!") for i in range(10): time.sleep(1) print("做了2个包子!") c.send(i) c2.send(i) producer(‘alex‘,‘bruce‘)
以上是关于课堂练习-python 生成器并行的主要内容,如果未能解决你的问题,请参考以下文章