Example 1: 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 2: python common elements in two arrays
import numpy as np
a = np.array([1,2,3,2,3,4,3,4,5,6])
b = np.array([7,2,10,2,7,4,9,4,9,8])
print(np.intersect1d(a,b))
Example 3: same elements of two sets in python
x = {2, 3, 5, 6}
y = {1, 2, 3, 4}
z = x.intersection(y)
Example 4: Write a Python program to find common element(s) in a given nested lists.
>>> p = [[1,2,3], [1,9,9], [1,2,4]]
>>> set.intersection(*map(set, p))
set([1])
>>> ip = iter(p)
>>> s = set(next(ip))
>>> s.intersection(*ip)
set([1])