How to find the indexes of the common values in two lists in Python

1 Answer

0 votes
import numpy as np
  
lst1 = [6, 3, 0, 9, 2, 4, 5]
lst2 = [7, 6, 8, 0, 1, 5, 2]
  
values,lst1_indexes,lst2_indexes = np.intersect1d(lst1, lst2, return_indices=True)
   
print(lst1_indexes)
 
print(lst2_indexes)
 
  
  
 
 
'''
run:
 
[2 4 6 0]
[3 6 5 1]

'''

 


 



answered Mar 15, 2023 by avibootz
edited Mar 15, 2023 by avibootz

Related questions

2 answers 183 views
2 answers 237 views
5 answers 457 views
2 answers 268 views
...