Answers for "get common values from two lists but not in another list in python"

3

find common elements in two lists python

list1 = [1,2,3,4,5,6]
list2 = [3, 5, 7, 9]
list(set(list1).intersection(list2))
Posted by: Guest on April-20-2021

Code answers related to "get common values from two lists but not in another list in python"

Python Answers by Framework

Browse Popular Code Answers by Language