如何获取 for 循环以在 while 循环的每次迭代中重新计算



代码的问题部分:

while counter < length:
    if something:
    else:
        for key,value in dictionary.items():
            if something:
            else:
    counter += 1

结构是一个{ key:[ {key:value,key1:value1}, {key:value,key1:value1} ] } 这就是计数器(列表索引)的用途。

所以我在自

学 Python (3.2.3) 时编写的一些脚本中多次注意到这一点。

我尝试搜索但没有运气(也许我的搜索词是错误的,谁知道呢?)并且我已经检查了文档,似乎问题是对于 while 语句,它说,"只要表达式为真,while 语句用于重复执行"。对于 For 语句,它说"表达式列表计算一次"。

现在,当我的脚本运行时,它不断收到一个关键错误,因为计数器增加了 1;但是 for 语句没有更新以反映另一个字典列表中的新元素;它仍在使用第一个元素。

我假设 while 循环中的每次迭代都会导致 For 语句重新计算。显然我在这一点上错了。

现在我可以重写代码来解决这个问题,但是我想知道的是,因为我已经遇到过几次了,我想知道的是,我如何以这种方式在 while 语句中使用 For 循环,但让它在每次迭代时重新计算 For 语句通过 while 循环。

谢谢!

更新:我在下面添加了实际代码。如果我只是做错了什么,我不会感到惊讶。我正在观察调试器中的值,当计数从 0 更改为 1 时,它会在 while 循环的下一次迭代中开始。 从那里开始,一切都按预期进行,直到它点击 For 循环"for key,value in item.items():",并且 item.items() 的值根本没有改变。更新更新:在试图弄清楚之后,我很确定这是 v 中的 for 项:这导致了问题。 让我们看看我能不能弄清楚!

固定!问题出在 v 中的 For 项:它在 while 循环之外,通过将其移动到循环中来解决。

def checkDifferences(newFile,oldFile):
    resultDiff = []
    for k,v in newFile.items():
        if newFile[k] != oldFile[k]:
            for item in v:
                count = 0
                lengthList = len(newFile[k])
                newKeys = newFile[k][count].keys()
                oldKeys = oldFile[k][count].keys()                
                while count < lengthList:
                    if newKeys == oldKeys:
                        for key,value in item.items():
                            newValue = newFile[k][count][key] 
                            oldValue = oldFile[k][count][key]
                            if newValue == oldValue:
                                pass
                            else:
                                resultDiff.append((k,count,key, oldValue,newValue))
                    else:
                        newValue = list(newFile[k][count].keys())
                        oldValue = list(oldFile[k][count].keys())
                        keyList = [key for key in newValue if key not in oldValue]
                        print(keyList)
                        for key,value in item.items():
                            if key in keyList:
                                oldValue = oldFile[k][count][oldKey]
                                resultDiff.append((k,count,key, None,newValue))
                            else:
                                oldValue = oldFile[k][count][key]
                            newValue = newFile[k][count][key]
                            if newValue == oldValue:
                                pass
                            else:
                                resultDiff.append((k,count,key, oldValue,newValue))
                            oldKey = key
                    count += 1
     return resultDiff
每次

for 循环开始时,都会计算一次 for 语句中的表达式。 由于您已将 for 循环放入 while 循环中,因此每次在 while 循环中,当遇到 for 语句时,都会计算表达式。

您的代码还有其他问题。 发布实际代码示例。

我的猜测是相信 OP 可能想要循环访问主字典中包含的'dict,以下是一般流程。

list_of_dicts = dictionary['key']
for subdict in list_of_dicts:
    print subdict.items() # or whatever

您的问题对我来说似乎有点模糊,但是基于您对结构格式和示例代码的评论,以下内容将允许您处理其内容:

# for structure { key:[ {key:value,key1:value1}, {key:value,key1:value1}, ... ] }
for dict_list in structure.values():
    if something:
    else:
        for key,value in dict_list.items():
            if something:
            else:

每次从外部for字典中检索另一个字典列表时,都会计算内部structure循环。我之所以使用structure.values(),是因为您似乎对structure的密钥不感兴趣。structure 的每个键似乎都与 value 相关联,值是字典列表,上面代码中使用的dict_list变量。

在 Python 中,通常需要计数器或循环索引来处理容器(如列表或字典)的内容,因为您可以使用for直接迭代它们,如图所示。

相关内容

  • 没有找到相关文章

最新更新