我的问题可能有点难以理解,但实际上就是这样。我有一个看起来像这样的嵌套字典:
dict_a = {'one': {'bird':2, 'tree':6, 'sky':1, 'TOTAL':9},
'two': {'apple':3, 'sky':1, 'TOTAL':4},
'three': {'tree':6, 'TOTAL':6},
'four': {'nada':1, 'TOTAL':1},
'five': {'orange':2, 'bird':3, 'TOTAL':5}
}
和一个清单:
list1 = ['bird','tree']
newlist = []
如何检查 list1 中的项目是否在 dict_a 的嵌套字典中并将其附加到新列表中?输出应如下所示:
newlist = ['one','three','five']
因为鸟和树恰好在嵌套字典中的一、三和五。
我能想到的是:
for s,v in dict_a.items():
for s1,v1 in v.items():
for item in list1:
if item == s1:
newlist.append(s)