Answers for "how do i find a common element in two list in python"

3

get common elements from two lists

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 "how do i find a common element in two list in python"

Python Answers by Framework

Browse Popular Code Answers by Language