码迷,mamicode.com
首页 > 编程语言 > 详细

Python3 生成器实现单线程并发

时间:2017-10-04 12:45:07      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:def   int   src   bsp   log   技术分享   view   code   consumer   

技术分享
 1 # Author = Johnston
 2 import time
 3 def consumer(name):
 4     print("%s准备吃包子了。。。" %name)
 5     while True:
 6         baozi = yield
 7         print("%s吃了%s个包子" %(name,baozi))
 8 
 9 def productor():
10     print("我准备做包子了。。。")
11     a = consumer("A")
12     b = consumer("B")
13     a.__next__()
14     b.__next__()
15     for i in range(10):
16         time.sleep(1)
17         print("我做了两个包子")
18         a.send(i+1)
19         b.send(i+1)
20 
21 productor()
View Code

 

Python3 生成器实现单线程并发

标签:def   int   src   bsp   log   技术分享   view   code   consumer   

原文地址:http://www.cnblogs.com/automate/p/7624930.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!