Answers for "finding common value between two list python numpy"

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

Code answers related to "finding common value between two list python numpy"

Python Answers by Framework

Browse Popular Code Answers by Language