圆月山庄资源网 Design By www.vgjia.com

本文实例讲述了python协程用法。分享给大家供大家参考。具体如下:

把函数编写为一个任务,从而能处理发送给他的一系列输入,这种函数称为协程

def print_matchs(matchtext):
  print "looking for",matchtext
  while True:
    line = (yield)
    #用 yield语句并以表达式(yield)的形式创建协程
    if matchtext in line:
      print line
> matcher = print_matchs('python')
> matcher.next()
looking for python
> matcher.send('hello python')#看生成器那片,关于send()跟next()的区别
hello python
> matcher.send('test')
> matcher.send('python is cool')
python is cool
>matcher.close()

希望本文所述对大家的Python程序设计有所帮助。

标签:
python,协程

圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com