我正在编写一个函数,它接受字典输入并返回在该字典中具有唯一值的键列表。考虑一下,
ip = {1: 1, 2: 1, 3: 3}
因此输出应为[3],因为键3具有唯一值,而dict中不存在该值。
现在在给定功能方面存在问题:
def uniqueValues(aDict):
dicta = aDict
dum = 0
for key in aDict.keys():
for key1 in aDict.keys():
if key == key1:
dum = 0
else:
if aDict[key] == aDict[key1]:
if key in dicta:
dicta.pop(key)
if key1 in dicta:
dicta.pop(key1)
listop = dicta.keys()
print listop
return listop
我收到的错误如下:
文件" main.py",第14行,在uniqueValues中 如果aDict [key] == aDict [key1]:KeyError:1
我做错了什么?
答案 0 :(得分:3)
你的主要问题是这一行:
dicta = aDict
你认为你正在复制字典,但实际上你仍然只有一本字典,所以对dicta的操作也会改变aDict(因此,你从adict中删除值,它们也会从aDict中删除,所以你得到你的KeyError)。
一种解决方案是
dicta = aDict.copy()
(你还应该给你的变量更清晰的名字,让你自己更清楚你正在做什么)
(编辑)此外,一种更简单的方式来做你正在做的事情:
def iter_unique_keys(d):
values = list(d.values())
for key, value in d.iteritems():
if values.count(value) == 1:
yield key
print list(iter_unique_keys({1: 1, 2: 1, 3: 3}))
答案 1 :(得分:0)
使用Counter
库中的 collections
:
from collections import Counter
ip = {
1: 1,
2: 1,
3: 3,
4: 5,
5: 1,
6: 1,
7: 9
}
# Generate a dict with the amount of occurrences of each value in 'ip' dict
count = Counter([x for x in ip.values()])
# For each item (key,value) in ip dict, we check if the amount of occurrences of its value.
# We add it to the 'results' list only if the amount of occurrences equals to 1.
results = [x for x,y in ip.items() if count[y] == 1]
# Finally, print the results list
print results
输出:
[3, 4, 7]