Write a NumPy program to find common values between two arrays
import numpy as np array1 = np.array([0, 10, 20, 40, 60]) print("Array1: ",array1) array2 = [10, 30, 40] print("Array2: ",array2) print("Common values between two arrays:") print(np.intersect1d(array1, array2))
Sample Output:
Array1: [ 0 10 20 40 60] Array2: [10, 30, 40] Common values between two arrays: [10 40]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer