在字典python中返回值的问题

时间:2012-10-14 15:16:01

标签: python dictionary

我将列表转换为计数器。当我尝试返回我的值时会发生此问题。我尝试了counter.values(),但我收到了原始列表而不是项目计数。有什么建议吗?

a=[1,1,2,1,2,3,4,5,66,44,3]
c=Counter(a)
print(c.values())

输出: [1,1,2,1,2,3,4,5,66,44,3]

3 个答案:

答案 0 :(得分:1)

keys()返回原始列表中的项目。 values()返回关联的计数。 items()返回键值(键计数)对。

答案 1 :(得分:0)

我同意OP,c.values()应该返回计数而不是项目本身。我相信这是预期的行为。其他任何东西都可能是一个错误。检查Python bugdb或尝试更新版本的Python。

答案 2 :(得分:0)

>>> from collections import Counter
>>> a=[1,1,2,1,2,3,4,5,66,44,3]
>>> c=Counter(a)
>>>
>>> c.keys() # elements of the original list taken once
dict_keys([1, 66, 3, 4, 5, 44, 2])
>>>
>>> c.values() # occurrences of each element
dict_values([3, 1, 2, 1, 1, 1, 2])
>>>
>>> c.items() # list of tuples (element, occurrence)
dict_items([(1, 3), (66, 1), (3, 2), (4, 1), (5, 1), (44, 1), (2, 2)])
>>>
>>> c[66] # occurrences of element 66
1