我有以下元组列表:
list_of_tuples = [('True', 100, 'Text1'),
('False', 101, 'Text2'),
('True', 102, 'Text3')]
我想将每个元组的所有第二个元素收集到一个集合中:
my_set = set()
my_set.add({tup[1] for tup in list_of_tuples})
但它会引发以下错误:
TypeError: unhashable type: 'set'
当我打印出迭代中的各个元素时,它表明集合理解的结果不包含预期的标量,而是列表:
print {tup[1] for tup in list_of_tuples}
set([100, 101, 102])
为什么会这样?为什么这首先将元素放入列表中,然后将列表放入集合中而没有任何提示?我该如何纠正我的解决方案?