You have already completed these exercises!
Do you want to take them again?
You completed the NUMPY Products Exercises from W3Schools.com
Share on:
Consider the following code:import numpy as nparr1 = np.array([5, 2, 3])newarr = np.prod(arr1)What will be the result of newarr?
import numpy as nparr1 = np.array([5, 2, 3])newarr = np.prod(arr1)
newarr
30
21
10