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 find the common elements in list of lists in Python

4 Answers

0 votes
a_list = [['aaa', 'ddd', 'eee', 'hhh'],
          ['bbb', 'aaa', 'fff', 'ggg', 'eee', 'iii'],
          ['www', 'eee', 'aaa']]

the_sets = map(set, a_list)

common_items = set.intersection(*the_sets)

print(common_items)


'''
run:

{'aaa', 'eee'}

'''

 



answered Nov 4, 2017 by avibootz
0 votes
a_list = [['aaa', 'ddd', 'eee', 'hhh'],
          ['bbb', 'aaa', 'fff', 'ggg', 'eee', 'iii'],
          ['www', 'eee', 'aaa']]

common_items = set.intersection(*map(set, a_list))

print(common_items)


'''
run:

{'aaa', 'eee'}

'''

 



answered Nov 4, 2017 by avibootz
0 votes
a_list = [['aaa', 'ddd', 'eee', 'hhh'],
          ['bbb', 'aaa', 'fff', 'ggg', 'eee', 'iii'],
          ['www', 'eee', 'aaa']]

common_items = set(a_list[0]).intersection(*a_list[1:])

print(common_items)


'''
run:

{'aaa', 'eee'}

'''

 



answered Nov 4, 2017 by avibootz
0 votes
a_list = [['aaa', 'ddd', 'eee', 'hhh'],
          ['bbb', 'aaa', 'fff', 'ggg', 'eee', 'iii'],
          ['www', 'eee', 'aaa']]

common_items = set(a_list[0]).intersection(*a_list)

print(common_items)


'''
run:

{'aaa', 'eee'}

'''

 



answered Nov 4, 2017 by avibootz

Related questions

2 answers 117 views
2 answers 196 views
5 answers 408 views
1 answer 123 views
...