I am fairly new to Python.
I have done some looking online and read someone say somewhere that it is impossible to create a set of sets in Python. Is there a way around this? ie...
Starting with the empty set xx,
xx = set([])
#now we have some other set, for example
elements = set([2,3,4])
xx.add(elements)
but I get
TypeError: unhashable type: 'list'
or
TypeError: unhashable type: 'set'
Is it possible to have a set of sets in python?
I am dealing with a large collection of sets and I want to be able to not have to deal duplicate sets (a set B of sets A1, A2, ...., An would "cancel" two sets if Ai = Aj)
Thanks for much for any assistance! Cheers