gpt4 book ai didi

python - 如何在 python 的单行理解中提取子列表的项目?

转载 作者:行者123 更新时间:2023-11-28 19:56:47 27 4
gpt4 key购买 nike

我目前正在学习 python 中列表理解的概念。但是,当我迭代的列表包含长度相等或不同的子列表时,我会遇到很大的问题。例如,我想将 union_set() 的代码变成单行理解:

def union_set(L):
S_union = set()

for i in range(len(L)):
S_union.update(set(L[i]))

return S_union


L1 = [1, 2, 3]
L2 = [4, 5, 6]
L3 = [7, 8, 9]

L = [L1, L2, L3]
print(L)

print(union_set(L))

我很确定这应该是可能的(也许通过“某种方式”解压子列表的内容(?)),但我担心我在这里遗漏了一些东西。谁能帮忙?

最佳答案

使用列表理解,你可以做这样的事情:

>>> L1 = [1, 2, 3]
>>> L2 = [4, 5, 6]
>>> L3 = [7, 8, 9]
>>> L = [L1, L2, L3]
>>> s=set([x for y in L for x in y])
>>> s
set([1, 2, 3, 4, 5, 6, 7, 8, 9])

y 遍历子列表,而 x 遍历 y 中的项目。

关于python - 如何在 python 的单行理解中提取子列表的项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17524819/

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