On 11/22/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> >>> ll = [[1,2],[2,1],[3,1],[1,4],[3,3],[1,4]]
> >>> ls = [frozenset(i) for i in ll]
> >>> ss = set(ls)
> >>> ss
> set([frozenset([1, 3]), frozenset([1, 2]), frozenset([1, 4]), frozenset([3])])
> >>> [list(i) for i in ss]
> [[1, 3], [1, 2], [1, 4], [3]]
why this happens?
>>> from sets import *
>>> ll = [[1,2],[2,1],[3,1],[1,4],[3,3],[1,4]]
>>> ls = [frozenset(i) for i in ll]
Traceback (most recent call last):
  File "<interactive input>", line 1, in ?
NameError: name 'frozenset' is not defined
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to