我正在使用Python 3,我有这个代码:
from collections import Counter
c = Counter([r[1] for r in results.items()])
但是当我运行它时,我收到了这个错误:
Traceback (most recent call last):
File "<pyshell#100>", line 1, in <module>
c = Counter([r[1] for r in results.items()])
File "C:\Python33\lib\collections\__init__.py", line 467, in __init__
self.update(iterable, **kwds)
File "C:\Python33\lib\collections\__init__.py", line 547, in update
_count_elements(self, iterable)
TypeError: unhashable type: 'list'
为什么我收到此错误?该代码最初是为Python 2编写的,但我在Python 3中使用它。在Python 2和3之间有什么变化吗?
答案 0 :(得分:3)
docs说:
Counter是用于计算可散列对象的dict子类。
在您的情况下,results
似乎是一个包含list
个对象的字典,这些对象不可清除。
如果您确定此代码在Python 2中有效,请打印results
以查看其内容。
Python 3.3.2+ (default, Oct 9 2013, 14:50:09)
>>> from collections import Counter
>>> results = {1: [1], 2: [1, 2]}
>>> Counter([r[1] for r in results.items()])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/vic/projects/venv/trains/lib/python3.3/collections/__init__.py", line 467, in __init__
self.update(iterable, **kwds)
File "/home/vic/projects/venv/trains/lib/python3.3/collections/__init__.py", line 547, in update
_count_elements(self, iterable)
TypeError: unhashable type: 'list'
顺便说一下,你可以简化你的构造:
Counter(results.values())