Python 协程 greenlet

Posted

tags:

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

from greenlet import greenlet
def test1():
print("a")
gr2.switch()
print("b")
gr2.switch()
def test2():
print("c")
gr1.switch()
print("d")
gr1 = greenlet(test1)
gr2=greenlet(test2)
gr1.switch()











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

Python 协程

Python3 协程相关

python之协程

Python协程之asyncio

python之协程

python协程