Conversation

Replying to
as a programer, to me a set is an unordered collection of elements without duplicates. so a set of sets would be a collection of those. in practice i rarely need the "without duplicates" constraint
3
25
Python has those nice operator overloads for sets. Comparison for subset/superset, - for difference and the clever use of bitwise operators. Makes sense to think of | as union, & as intersection and ^ as symmetric difference where integers are defined as sets of indexed bits.