50

这是输入:

x = [{1, 2, 3}, {2, 3, 4}, {3, 4, 5}]

输出应该是:

{1, 2, 3, 4, 5}

我尝试使用set().union(x),但这是我得到的错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'set'
4

1 回答 1

75

的签名set.unionunion(other, ...)。从您的列表中解压套装:

In [6]: set.union(*x)
Out[6]: {1, 2, 3, 4, 5}
于 2015-07-06T18:35:29.167 回答