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
Without using zip
sum(e[0] for e in l), sum(e[1] for e in l)