如何获取列表中嵌套元组的总和 [已关闭]

How to get sum of nested tuples in list [closed]

提问人:PRA7H1K 提问时间:10/1/2023 更新时间:10/1/2023 访问量:61

问:


想改进这个问题吗?通过编辑这篇文章来添加详细信息并澄清问题。

上个月关闭。

我有列表,我想将元组中的值加在一起。我该怎么做?[(270,), (270,)]

注意:元组的数量会有所不同,因此我需要一个动态解决方案来将值相加

python-3.x 列表 元组

评论

0赞 Chris 10/1/2023
你想要类似的东西吗:-> ?如果是这样,到目前为止你尝试了什么?[(a1, b1, c1), (a2, b2, c2)](a1+a2, b1+b2, c1+c2)

答:

0赞 tonyjo 10/1/2023 #1

假设你有一个元组列表(大小不一),你可以直接在 Python 中使用该函数:sum

初始化变量以存储总和total_sum = 0

# Initialize a variable to store the total sum
total_sum = 0

# Iterate through the list and add the values in each tuple to the total sum
for each_tup in tuple_list:
   total_sum += sum(each_tup)

print(total_sum)