使用python 2.6:
我有一本字典,其中每个键都包含一个值列表。
我想查看字典中的所有值,并计算每个值在所有键中出现的次数。
我一直在看 itervalues() 或
for value in dictionary.values():
首先,还有 .count() 函数,但我需要返回一个直方图。
例如:
print dictionary
会回来
{'test' : ['spam', 'eggs', 'cheese', 'spam'], 'test2' : ['spam', 'cheese', 'goats']}
我想告诉我一些事情:
{'spam' : 3, 'eggs' : 1, 'cheese': 2, 'goats' : 1}