Answers for "compare two lists and find the different python"

R
0

how to compare two lists element by element in python and return matched element

>>> [i for i, j in zip(a, b) if i == j]
[5]
Posted by: Guest on July-05-2020
0

get list of words that are in two lists using set

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

list3 = set(list1)&set(list2) # we don't need to list3 to actually be a list

list4 = sorted(list3, key = lambda k : list1.index(k))
Posted by: Guest on November-21-2020

Code answers related to "compare two lists and find the different python"

Browse Popular Code Answers by Language