Learn practical skills, build real-world projects, and advance your career
import warnings
warnings.filterwarnings('ignore')
import numpy as np
np.__version__
'1.19.2'
arr = np.array([1,2.5,3.6,35])
arr
array([ 1. ,  2.5,  3.6, 35. ])
np.sum(arr)
42.1