Contact: aviboots(AT)netvision.net.il
41,243 questions
53,750 answers
573 users
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] '''