Answers for "number of same elements in two lists python"

3

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))
Posted by: Guest on June-19-2020
-1

python same values in two lists

a = {1, 2, 3, 4}
b = {3, 4, 5, 6}

a.intersection(b)
Posted by: Guest on February-17-2021

Code answers related to "number of same elements in two lists python"

Python Answers by Framework

Browse Popular Code Answers by Language