Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,872 questions

51,796 answers

573 users

How to print the common elements of two lists in Python

5 Answers

0 votes
def print_common_elements(lst1, lst2): 
    set1 = set(lst1) 
    set2 = set(lst2)
 
    if (set1 & set2): 
        print(set1 & set2) 
    else: 
        print("No common elements")  
          
  
lst1 = [1, 2, 3, 4, 5, 25, 6, 8] 
lst2 = [7, 8, 8, 9, 0, 87, 19, 2] 

print_common_elements(lst1, lst2)



'''
run:

{8, 2}

'''

 



answered Jan 23, 2020 by avibootz
0 votes
def print_common_elements(lst1, lst2): 
    set1 = set(lst1) 
    set2 = set(lst2)
  
    if (set1 & set2): 
        if (set1 & set2): 
          for n in set1 & set2:
            print(n)
    else: 
        print("No common elements")  
           
   
lst1 = [1, 2, 3, 4, 5, 25, 6, 8] 
lst2 = [7, 8, 8, 9, 0, 87, 19, 2] 
 
print_common_elements(lst1, lst2)
 
 
 
'''
run:
 
8
2
 
'''

 



answered Jan 23, 2020 by avibootz
0 votes
lst1 = [1, 2, 3, 4, 5]
lst2 = [4, 7, 5, 8, 9]

st = set(lst1) & set(lst2)

for val in st:
    print(val)

    
    

'''
run:

4
5

'''

 



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

 



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

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

 



answered Feb 24, 2023 by avibootz

Related questions

2 answers 196 views
2 answers 117 views
4 answers 280 views
1 answer 123 views
...