Articles → Numpy → Sum All Values Of An Array In Numpy
import numpy as np mat = np.arange(1,26) print(“Sum is:”, np.sum(mat))
Query/Feedback