get common elements from two lists python code example

Example 1: find common elements in two lists python

list1 = [1,2,3,4,5,6]
list2 = [3, 5, 7, 9]
list(set(list1).intersection(list2))

Example 2: find common words in two lists python

list1 = ['little','blue','widget']
list2 = ['there','is','a','little','blue','cup','on','the','table']

list3 = set(list1)&set(list2)

list4 = sorted(list3, key = lambda k : list1.index(k))

Example 3: find number of common element in two python array

len([x for x in list1 if x in list2])

Example 4: same elements of two sets in python

x = {2, 3, 5, 6}
y = {1, 2, 3, 4}

z = x.intersection(y)