python中yield from怎么用?

516次阅读
没有评论

python中yield

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

yield from本质:

for item in iterable: yield item的缩写版

代码示例:

def g(x):
    yield from range(x , 0, -1)
    yield from range(x)
print(list(g(5)))

利用yield from语句向生成器(协程)传送数据:

def writer():
    while True:
        w = (yield) 
        print('>>', w)
def writer_wrapper(coro1):
coro1.send(None) 
    while True:
        try:
            x = (yield) 
            coro1.send(x) 
        except StopIteration:
            pass
def writer_wrapper(coro2):
yield from coro2
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-05-10发表,共计472字。
新手QQ群:570568346,欢迎进群讨论 Python51学习