我有一个嵌套字典,我正在尝试在 in 中查找重复项。例如,如果我有:
dictionary = {'hello': 3 , 'world':{'this': 5 , 'is':{'a': 3, 'dict': None}}}
返回值类似于:
True
因为这本词典包含重复项。
我可以用普通字典很容易地做到这一点,我认为这也适用于这种情况:
dictionary = {'hello': 3 , 'world':{'this': 5 , 'is':{'a': 3, 'dict': None}}}
rev_dictionary = {}
for key, value in dictionary.items():
rev_dictionary.setdefault(value, set()).add(key)
print(rev_dictionary)
for key,values in dictionary.items():
if len(values) > 1:
values = True
else:
values = False
这会引发以下错误:
TypeError: unhashable type: 'dict'
我怎样才能让它工作?
谢谢您的帮助!
注意:如果可能,我更喜欢不使用库的解决方案
呼如林
繁花不似锦
繁花如伊
相关分类