**关闭。**此题需要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)创建的字典中获取值时,我无法解析和查看值
1条答案
按热度按时间qyuhtwio1#
成功了,似乎是终端出了点小故障。