python函数之协程与面向过程编程

Posted

tags:

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

第一:协程

初步了解协程

def eater():
    print(start to eat)
    while True:
        food=yield
        print(is eating food:%s%food)

def producer():
    dog=eater()
    next(dog) # 先next一次唤醒协程函数
    #然后下面的操作都是dog.send(值)
    food1=北京烤鸭
    food2=鱼香肉丝
    dog.send(food1)
    dog.send(food2)
producer()

输出结果:
start to eat
is eating food:北京烤鸭
is eating food:鱼香肉丝

第二:协程的应用

更新中。。。

第三:面向过程编程

更新中。。。

以上是关于python函数之协程与面向过程编程的主要内容,如果未能解决你的问题,请参考以下文章

python之协程与IO操作

网络编程之协程与池

python3之协程

Python中的协程与asyncio原理

Python中的协程与asyncio原理

Python中的协程与asyncio原理