gpt4 book ai didi

Python将数字列表与其他数字列表相加

转载 作者:太空宇宙 更新时间:2023-11-03 13:00:03 24 4
gpt4 key购买 nike

在 Python 中是否有一种简单的方法可以将列表的单个数字添加到其他列表的单个数字?在我的代码中,我需要以类似的方式添加大约 10 个长列表:

listOne = [1,5,3,2,7]
listTwo = [6,2,4,8,5]
listThree = [3,2,9,1,1]

因此我希望结果是:

listSum = [10,9,16,11,13]

提前致谢

最佳答案

使用 zip , sumlist comprehension :

>>> lists = (listOne, listTwo, listThree)
>>> [sum(values) for values in zip(*lists)]
[10, 9, 16, 11, 13]

关于Python将数字列表与其他数字列表相加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25640628/

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