How to find the common elements of three lists with Python

2 Answers

0 votes
lst1 = [1, 2, 3, 4, 5, 0]
lst2 = [4, 7, 5, 0, 8, 9]
lst3 = [5, 7, 8, 0, 2, 1]
 
st = set(lst1).intersection(lst2, lst3)
 
for val in st:
    print(val)
 
     
     
 
'''
run:
 
0
5

'''

 



answered Feb 24, 2023 by avibootz
0 votes
from functools import reduce
import numpy as np

lst1 = [1, 2, 3, 4, 5, 0]
lst2 = [4, 7, 5, 0, 8, 9]
lst3 = [5, 7, 8, 0, 2, 1]
 
st = reduce(np.intersect1d, (lst1, lst2, lst3))
 
for val in st:
    print(val)
 
     
     
 
'''
run:
 
0
5

'''

 



answered Feb 24, 2023 by avibootz

Related questions

4 answers 323 views
2 answers 237 views
5 answers 457 views
...