I want to use a dictionary with string as key and set() as values.
How do I initialize an empty dictionary with a specific type as values?
I need it because I don't want to check everytime if the key is already in the dictionary and put an if to create the set instead of just using .add()
is it possible?