Thursday, September 25, 2025
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
32319 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6681 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6794 POSTS0 COMMENTS
Ted Musemwa
7070 POSTS0 COMMENTS
Thapelo Manthata
6753 POSTS0 COMMENTS
Umr Jansen
6761 POSTS0 COMMENTS