![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: finding the intersection of a list of Sets
From: Peter Otten <__peter__@web.de>
Date: Tue Jan 31 2006 - 11:40:01 CET
Suresh Jeevanandam wrote:
> I have a list of sets in variable lsets .
Try to post working examples.
> Is there any other shorter way?
>>> sets = map(set, "abc bcd cde".split())
Peter
|