检查Python的'Counter`中的元素数量

时间:2011-03-31 21:06:56

标签: python collections

Python 2.7 / 3.1引入了令人敬畏的collections.Counter

我的问题:我如何计算一个计数器有多少“元素出现”?

我想要这个:

len(list(counter.elements()))

但更短。

1 个答案:

答案 0 :(得分:3)

sum(counter.itervalues())