Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我读过其他人有这个问题,但解决方案对我不起作用。我知道我正在运行 python 2.73 并且我没有名为集合或计数器的文件。每当我尝试导入计数器时,我都会收到此错误。
from collections import counter ImportError: cannot import name counter
任何解决此问题的建议都将非常感谢!
Counter()不是counter():
Counter()
counter()
from collections import Counter