python-3.x 我如何在字典中的列表中的字典中迭代?[关闭]

c3frrgcw  于 2023-05-02  发布在  Python
关注(0)|答案(1)|浏览(144)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
5天前关闭。
Improve this question
迭代并从字典中的列表中获取字典的值

Dict={
    'Table' : [
    {
        'code' : '001',
        'name' : 'Abcd'
    },
    {
       'code' : '002',
       'name' : 'Lorem'
    },
    {
      'code' : '003',
      'name' : 'Epsum'
    }

]
}

我试过这个:

for i in Dict.keys():
    for j in Dict[i]:
        for k in j.values():
            if k == 'Lorem':
                print(j)

它对我来说很正常,但是当我试图从一个由JSON数据(大约200到300)创建的字典中获取值时,我无法解析和查看值

qyuhtwio

qyuhtwio1#

for i in Dict:
    for j in Dict[i]:
        for k in j.values():
            if k == 'Lorem':
                print(j)

成功了,似乎是终端出了点小故障。

相关问题