我已经读过其他人有这个问题,但解决方案对我没有用。我知道运行python 2.73的事实,我没有一个名为collections或counter的文件。每当我尝试导入计数器时,我都会收到此错误。
from collections import counter
ImportError: cannot import name counter
任何解决这个问题的建议都非常感谢!
答案 0 :(得分:4)
Counter()
不是counter()
:
from collections import Counter