9
我一直在嘗試在3.2中使用計數器,但我不確定是否嘗試正確使用它。任何想法,爲什麼我得到錯誤?在Python 3.2中使用「計數器」
>>> import collections
>>> Counter()
Traceback (most recent call last):
File "<pyshell#5>", line 1, in <module>
Counter()
NameError: name 'Counter' is not defined
我似乎可以訪問計數器,如果我去「collections.Counter()」但不是在文檔中的示例。