0

我读过其他人有这个问题,但解决方案对我不起作用。我知道我正在运行 python 2.73 并且我没有名为集合或计数器的文件。每当我尝试导入计数器时,我都会收到此错误。

from collections import counter
ImportError: cannot import name counter

任何解决此问题的建议都将非常感谢!

4

1 回答 1

4

Counter()不是counter()

from collections import Counter
于 2012-10-13T17:29:51.267 回答