Python 协程

Posted wztshine

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 协程相关的知识,希望对你有一定的参考价值。

 

 

 

手动协程操作:

# pip install gevent
from greenlet import greenlet

def test():
    print(He )
    gr2.switch()
    print(a )
    gr2.switch()

def test2():
    print(is )
    gr1.switch()
    print(student.)

gr1 = greenlet(test)
gr2 = greenlet(test2)
gr1.switch()

 

2. 自动协程,遇到I/O自动切换

以上是关于Python 协程的主要内容,如果未能解决你的问题,请参考以下文章

Python中的协程与asyncio原理

Python中的协程与asyncio原理

Python中的协程与asyncio原理

python3之协程

python协程

python协程