Answers for "python compare two lists intersection"

8

intersection of two lists python

>>> a = [1,2,3,4,5]
>>> b = [1,3,5,6]
>>> list(set(a) & set(b))
[1, 3, 5]
Posted by: Guest on August-10-2020
1

python check if two lists intersect

a = [1, 2, 3]
b = [3, 4, 5]

bool(set(a) & set(b))
Posted by: Guest on October-06-2020

Code answers related to "python compare two lists intersection"

Python Answers by Framework

Browse Popular Code Answers by Language