今天爱分享给大家带来AttributeError: ‘module’ object has no attribute ‘Counter’【解决方法】,希望能够帮助到大家。
当使用Counter时,出现异常
AttributeError: 'module' object has no attribute 'Counter' from collections import Counter ImportError: cannot import name Counter
原因:
版本问题,Counter在 python2.7中才被加入到这个模块,你可能使用了Python2.6或更老的版本