I\'m trying to figure out how to compare an n number of lists to find the common elements. For example:
p=[ [1,2,3], [1,9,9], .. .. [1,2
You are looking for the set intersection of all the sublists, and the data type you should use for set operations is a set:
result = set(p[0]) for s in p[1:]: result.intersection_update(s) print result