How to sum the elements of each tuple in a list of tuples in Python

1 Answer

0 votes
list_of_tuples = [(1, 2), (3, 4), (5, 6), (7, 8)]

sum_result = [sum(tpl) for tpl in list_of_tuples]

print(sum_result)  




'''
run:

[3, 7, 11, 15]

'''

 



answered Jul 5, 2022 by avibootz
...