gpt4 book ai didi

python - 检查列表并相应地编辑第二个列表

转载 作者:太空宇宙 更新时间:2023-11-04 07:30:07 26 4
gpt4 key购买 nike

我有 3 个列表(相同的形状 - 大约 800 个元素),值为 1 或 0。我想要实现的是一个新列表,其中包含该索引的其他 3 个列表中 1 的数量

进一步解释...

# I have these
list1 = [1, 0, 1]
list2 = [1, 1, 1]
list3 = [0, 0, 1]

# I want this

new_list = [2, 1, 3]

我通过嵌套的 for 循环(即循环遍历每个列表并相应地编辑 new_list)来实现它。但是,我想知道是否存在更有效(尤其是在内存和资源方面)的方法。

最佳答案

这应该适合你

# I have these
list1 = [1, 0, 1]
list2 = [1, 1, 1]
list3 = [0, 0, 1]

[sum(i) for i in zip(list1, list2, list3)]

[2, 1, 3]

关于python - 检查列表并相应地编辑第二个列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49647860/

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