Sunday, May 10, 2026
HomeLanguagesPython | numpy.isin() method

Python | numpy.isin() method

With the help of numpy.isin() method, we can see that one array having values are checked in a different numpy array having different elements with different sizes.

Syntax : numpy.isin(target_array, list)

Return : Return boolean array having same size as of target_array.

Example #1 :

In this example we can see that by using numpy.isin() method, we are able to get the boolean array if elements are matched with the target array.




# import numpy
import numpy as np
  
# using numpy.isin() method
gfg1 = np.array([1, 2, 3, 4, 5])
lis = [1, 3, 5]
gfg = np.isin(gfg1, lis)
  
print(gfg)


Output :

[ True False True False True]

Example #2 :




# import numpy
import numpy as np
  
# using numpy.isin() method
gfg1 = np.array([[1, 3], [5, 7], [9, 11]])
lis = [1, 3, 11, 9]
gfg = np.isin(gfg1, lis)
  
print(gfg)


Output :

[[ True True]
[False False]
[ True True]]

RELATED ARTICLES

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS