The title basically explains it, I'm new to arrays and I need to add the columns, here is my array:
[[20,40,60,21,70]
[2,76,5,90,50]
[21,67,99,33,49]]
So I need to add (20 + 2 + 21), (40 + 76 + 67) etc..
I tried using np.sum but I'm somewhat new to arrays so I'm not sure how to slice/ index properly with arrays.
Thank you for your help