Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #find #common #words #lists #python
ADD COMMENT
Topic
Name
1+8 =