Somme python d'un tableau en numpy

import numpy as np
a=np.array([[1,4],[3,5]])
b=np.sum(a,axis=1)
print(b)
Outrageous Ostrich