本文实例讲述了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并发编程之多进程、多线程、异步和协程详解python线程、进程和协程详解深入浅析python中的多进程、多线程、协程简单介绍Python的Tornado框架中的协程异步实现原理python多任务及返回值的处理方法python实现单线程多任务非阻塞TCP服务端Python实现简单的多任务mysql转xml的方法python多任务之协程的使用详解