次のコードを入力すると。リスト内の重複するアイテムを削除しようとしています。このリストには 10K のペアが含まれる場合があります。
>>> t = [['a','1'],['a','1'],['a','2']...]
>>> t = list(set(t))
Traceback (most recent call last):
File "<pyshell#19>", line 1, in <module>
t = list(set(t))
TypeError: unhashable type: 'list'
>>>