提问人:PRA7H1K 提问时间:10/1/2023 更新时间:10/1/2023 访问量:61
如何获取列表中嵌套元组的总和 [已关闭]
How to get sum of nested tuples in list [closed]
问:
我有列表,我想将元组中的值加在一起。我该怎么做?[(270,), (270,)]
注意:元组的数量会有所不同,因此我需要一个动态解决方案来将值相加
答:
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)
评论
[(a1, b1, c1), (a2, b2, c2)]
(a1+a2, b1+b2, c1+c2)