| 1 | initial version |
To circumvent this problem the frozenset (which can't be modified after creation) was invented:
sage: a.add(frozenset(b))
sage: a
{1, frozenset({2})}
| 2 | No.2 Revision |
To circumvent this problem the frozenset (which can't be modified after creation) was invented:
sage: a.add(frozenset(b))
sage: a
{1, frozenset({2})}
Another alternative is to use Sage's Set:
sage: a=Set([1])
sage: b=Set([2])
sage: a.union(Set([b]))
{1, {2}}
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.