Python 3.0.1 collections.Counter

时间:2012-04-05 20:12:12

标签: python collections python-3.x counter

在Python 3.0.1中,我试图使用Counter模块的collections部分 我在文档中看到的任何地方......没有任何内容表明模块的这一部分在Python 3.0.1中不可用。但...

from collections import Counter
from collections import counter
from Collections import Counter
from Collections import counter

对我来说,所有的收益错误......为什么会这样?

4 个答案:

答案 0 :(得分:3)

版本3.1中添加了

collections.Counter。升级到3.2或自己实现课程。有一个食谱here.

答案 1 :(得分:3)

使用3.0 - 它在到达时基本上已经死了,因为它有严重的问题。获得3.2,或至少3.1。

答案 2 :(得分:2)

python的3.0.1版本中不存在Counter类。它出现在3.1版本中。

答案 3 :(得分:2)