How to find the common values in two lists in Python

2 Answers

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(values)

 
  
 
 
'''
run:
 
[0 2 5 6]

'''

 



answered Mar 15, 2023 by avibootz
edited Mar 15, 2023 by avibootz
0 votes
lst1 = [6, 3, 0, 9, 2, 4, 5]
lst2 = [7, 6, 8, 0, 1, 5, 2]
 
result = list(set(lst1).intersection(lst2))
  
print(result)

 
  
 
 
'''
run:
 
[0, 2, 5, 6]

'''

 


 



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

Related questions

1 answer 166 views
2 answers 250 views
5 answers 476 views
2 answers 284 views
2 answers 151 views
...