I am working with frozensets.
When I do print(my_frozenset)
the output is something like "frozenset({1, 2, 3})".
However I have many nested frozensets and I find this print very long and hard to read.
I want to modify it so that print(my_frozenset)
outputs, for example, "fs{1,2,3}" or something different.