I want to intersect several(e.g. 3) lists.
a = ["a", "b", "c"]
b = ["d", "e", "f"]
c = ["g", "h", "i"]
There is an intersect1d method from numpy, but it accepts only 2 arrays per call, so, that is not that comfortable to use. Are their any methods, which accepts a bunch of lists at once?
 
     
     
    