python 基础(十六)生成器用法举例

Posted zbvc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 基础(十六)生成器用法举例相关的知识,希望对你有一定的参考价值。

import  time
def consumer(name):
    print(%s,准备吃包子%name)
    while True:
        baozi = yield
        print(包子%s来了,被%s吃了%(baozi,name))
c = consumer(clyde)
c.__next__()  #__next__():调用一次
b = 香菇油菜馅
c.send(b) #send():把参数发送过去在调用一次

协程

import  time
def consumer(name):
    print(%s,准备吃包子%name)
    while True:
        baozi = yield
        print(包子%s来了,被%s吃了%(baozi,name))
c = consumer(clyde)
c.__next__()
def producer(name):
    c = consumer(张三)
    c2 = consumer(的歌)
    c.__next__()
    c2.__next__()
    print(我开始准备做包子了)
    for i in range(10):
        time.sleep(1)
        print(做了一个包子)
        c.send(i)
        c2.send(i)
producer(name)

 

以上是关于python 基础(十六)生成器用法举例的主要内容,如果未能解决你的问题,请参考以下文章

Python collections 模块用法举例

[系统安全] 四十六.Powershell恶意代码检测系列 Powershell基础入门及管道和变量的用法

python基础_格式化输出(%用法和format用法)

python基础_格式化输出(%用法和format用法)

Python3.x基础学习-生成器用法

Python基础学习第九节 import 用法详解