これは入力です:
_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'
_
_set.union
_ の署名はunion(other, ...)
です。リストからセットを解凍します。
_In [6]: set.union(*x)
Out[6]: {1, 2, 3, 4, 5}
_