码迷,mamicode.com
首页 > 其他好文 > 详细

循环生成器推导输出结果

时间:2020-05-29 19:48:04      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:pytho   推导   class   highlight   输出   生成   ret   def   python   

def add(n, i):
    return n+i

def test():
    for i in range(4):
        yield i

g = test()

for n in [1, 10, 5]:
    g = (add(n, i) for i in g)

  

循环生成器推导输出结果

标签:pytho   推导   class   highlight   输出   生成   ret   def   python   

原文地址:https://www.cnblogs.com/hchan/p/12989060.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!