Answers for "common values in two lists 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
2

find number of common element in two python array

len([x for x in list1 if x in list2])
Posted by: Guest on October-21-2020
0

same elements of two sets in python

x = {2, 3, 5, 6}
y = {1, 2, 3, 4}

z = x.intersection(y)
Posted by: Guest on May-17-2020

Code answers related to "common values in two lists python"

Python Answers by Framework

Browse Popular Code Answers by Language