从收集python 2.73导入计数器的麻烦

时间:2012-10-13 17:29:04

标签: python import

我已经读过其他人有这个问题,但解决方案对我没有用。我知道运行python 2.73的事实,我没有一个名为collections或counter的文件。每当我尝试导入计数器时,我都会收到此错误。

from collections import counter
ImportError: cannot import name counter

任何解决这个问题的建议都非常感谢!

1 个答案:

答案 0 :(得分:4)

Counter()不是counter()

from collections import Counter