I have a list of tuples similar to this:
l = [(1, 2), (3, 4), (5, 6), (7, 8), (9, 0)]
I want to create a simple one-liner that will give me the following result:
r = (25, 20) or r = [25, 20] # don't care if tuple or list.
Which would be like doing the following:
r = [0, 0]
for t in l:
r[0]+=t[0]
r[1]+=t[1]
I am sure it is something very simple, but I can't think of it.
Note: I looked at similar questions already:
How do I sum the first value in a set of lists within a tuple?
How do I sum the first value in each tuple in a list of tuples in Python?
See Question&Answers more detail:os