intersection list of lists python code example
Example 1: intersection of two lists python
>>> a = [1,2,3,4,5]
>>> b = [1,3,5,6]
>>> list(set(a) & set(b))
[1, 3, 5]
Example 2: intersection of lists in python
import numpy as np
recent_coding_books = np.intersect1d(recent_books,coding_books)