I am calling:
c = Counter()
...exactly as in the collections example code here:
http://docs.python.org/py3k/library/collections.html?highlight=collections#collections.Counter
but it gives me this error:
NameError: name 'Counter' is not defined
Anyone know why? Note that I have 3.1.2 and yes I include "import collections".
Thanks