在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
对我来说,所有的收益错误......为什么会这样?
答案 0 :(得分:3)
collections.Counter
。升级到3.2或自己实现课程。有一个食谱here.
答案 1 :(得分:3)
不使用3.0 - 它在到达时基本上已经死了,因为它有严重的问题。获得3.2,或至少3.1。
答案 2 :(得分:2)
python的3.0.1版本中不存在Counter
类。它出现在3.1版本中。
答案 3 :(得分:2)
计数器未出现在3.0.1的手册中:http://docs.python.org/release/3.0.1/library/collections.html
似乎首先出现在3.1中: http://docs.python.org/release/3.1/library/collections.html