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 126 views
2 answers 224 views
5 answers 436 views
1 answer 140 views
...