gpt4 book ai didi

python - 如何在 Python 的集合列表中找到并集?

转载 作者:IT老高 更新时间:2023-10-28 20:53:42 25 4
gpt4 key购买 nike

这是输入:

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}

关于python - 如何在 Python 的集合列表中找到并集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31253109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com