给定一个字典 d 和一个列表 lst,从字典中删除所有其键是 lst 元素的元素。列表中任何不是字典键的元素都应添加到与变量 not_found 关联的新集合中。例如,给定字典 {1:2, 3:4, 5:6, 7:8} 和列表 [1, 6, 7],结果字典将是 {3:4, 5:6} 并且set not_found 将包含 6。
这就是我的代码的样子:
not_found = ()
for i in d:
if d[i] in lst:
not_found.append(d[i])
del d[i]