Learn practical skills, build real-world projects, and advance your career
import numpy as np
climate_data = np.array([12,37,28])
weights = np.array([0.3,0.2,0.5])
np.dot(climate_data,weights)
25.0
climate_data @ weights
25.0