the question is pretty clear but an example:
a = [[1,2],[3,4],[5,6],[7,8]]
then the list I want to make is:
a_new = [ 1+3+5+7 , 2+4+6+8]
The lists within the list are always of the same length and of course I want to not only do this for two dimensions but for big numbers n as well.
So far I've tried using double for loops but I utterly failed so help would be much appreciated.