How to compute the product of two arrays in Python

1 Answer

0 votes
import numpy as np

arr1 = np.array([1, 2, 3, 4])
arr2 = np.array([5, 6, 7, 8])

product = np.multiply(arr1, arr2)
print(product)




'''
run:

[5 12 21 32]

'''

 



answered Feb 23, 2023 by avibootz
...