Say I have a list of lists
[[1, 2, 3], [4, 5, 6]]
And I want to transform this such that the individual indices are summed and I get:
[5, 7, 9]
Is there an easy combination of list comprehensions, zip(), sum() and so on for me to get this result without writing a clutter of for loops and accumulators?