[sum(row[i] for row in array) for i in range(len(array[0]))]
That should do it. len(array[0])
is the number of columns, so i
iterates through those. The generator expression row[i] for row in array
goes through all of the rows and selects a single column, for each column number.