搜索

首页  >  问答  >  正文

python - 用生成器迭代数据在文件和IDLE中运行结果不一致,

使用生成器迭代数据构造丢失问题,同样的代码运行结果不一致:

  1. 文件方式运行得到结果为:5 2 1 0

  2. Python自带IDLE运行得到结果为:5 3 2 1 0

def countdown(n):
    while n >= 0:
        newvalue = (yield n)
        if newvalue is not None:
            n = newvalue
        else:
            n -= 1


c = countdown(5)
for n in c:
    print(n)
    if n == 5:
        c.send(3)

过去多啦不再A梦过去多啦不再A梦2745 天前592

全部回复(1)我来回复

  • 迷茫

    迷茫2017-05-18 11:03:04

    不要对正在遍历的对象进行修改, 那样会导致索引混乱, 无法达到我们想要的结果, 可以通过enumerate查看遍历过程中, 索引的变化

    for index, n in enumerate(c):
        # index 为取到的索引值
        print(index, n)
        if n == 5:
            c.send(3)
            

    回复
    0
  • 取消回复