2

考虑一系列集合:

>>> [{n, 2*n} for n in range(5)]
[{0}, {1, 2}, {2, 4}, {3, 6}, {8, 4}]

将它们直接传递给 union 方法会产生正确的结果:

>>> set().union({0}, {1, 2}, {2, 4}, {3, 6}, {8, 4})
{0, 1, 2, 3, 4, 6, 8}

但是将它们作为列表或生成器表达式传递会导致 TypeError:

>>> set().union( [{n, 2*n} for n in range(5)] )
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'set'

>>> set().union({n, 2*n} for n in range(5))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'set'

为什么会发生,有哪些解决方案?

4

2 回答 2

4

此错误的原因是set.union()需要一个或多个集合(即set.union(oneset, anotherset, andathirdone)),而不是listnor 生成器。

解决方案是解压缩您的列表或生成器:

>>> set().union( *({n, 2*n} for n in range(5)) )
{0, 1, 2, 3, 4, 6, 8}
于 2018-08-16T07:33:39.273 回答
1

这是在不创建列表的情况下合并多个集合的方法

s = set()

for n in range(5): 
    s = s.union({n, 2*n})
于 2018-08-16T08:08:52.510 回答