I'm trying to make a set of sets in Python. I can't figure out how to do it.
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)
So I had the exact same problem. I wanted to make a data structure that works as a set of sets. The problem is that the sets must contain immutable objects. So, what you can do is simply make it as a set of tuples. That worked fine for me!
Python's complaining because the inner
set
objects are mutable and thus not hashable. The solution is to usefrozenset
for the inner sets, to indicate that you have no intention of modifying them.People already mentioned that you can do this with a frozenset(), so I will just add a code how to achieve this:
For example you want to create a set of sets from the following list of lists:
you can create your set in the following way:
Use
frozenset
inside.