finding the intersection of a list of Sets

Suresh Jeevanandam jm.suresh at gmail.com
Tue Jan 31 04:36:42 EST 2006


I have a list of sets in variable lsets .

Now I want to find the intersection of all the sets.

r = lsets[0]
for s in r[0:]:
    r = r & s

Is there any other shorter way?

Thanks in advance,
Suresh



More information about the Python-list mailing list