我想计算字典中每个值的数量,并构造一个以值为键的新值,以及具有所述值作为值的键列表。
Input :
b = {'a':3,'b':3,'c':8,'d':3,'e':8}
Output:
c = { '3':[a. b. d]
'8':[c, e]
}
我已经写了以下内容,但它引发了一个关键错误并且没有给出任何输出,有人可以帮忙吗?
def dictfreq(b):
counter = dict()
for k,v in b.iteritems():
if v not in counter:
counter[v].append(k)
else:
counter[v].append(k)
return counter
print dictfreq(b)
答案 0 :(得分:5)
更好的方法是使用collections.defaultdict
。例如:
from collections import defaultdict
b = {'a':3,'b':3,'c':8,'d':3,'e':8}
new_dict = defaultdict(list) # `list` as default value
for k, v in b.items():
new_dict[v].append(k)
new_dict
保留的最终值为:
{8: ['c', 'e'], 3: ['a', 'b', 'd']}
答案 1 :(得分:3)
更改此
if v not in counter:
counter[v].append(k)
else:
counter[v].append(k)
到此:
if v not in counter:
counter[v] = [] # add empty `list` if value `v` is not found as key
counter[v].append(k)
答案 2 :(得分:1)
您可以使用dict.setdefault
方法:
>>> c = {}
>>> for key, value in b.iteritems():
... c.setdefault(value, []).append(key)
...
>>> c
{8: ['c', 'e'], 3: ['a', 'b', 'd']}
在Python3中使用b.items()
代替。