I\'m learning python, and I have a novice question about initializing sets. Through testing, I\'ve discovered that a set can be initialized like so:
my_set
You need to do empty_set = set() to initialize an empty set. {} is an empty dict.
empty_set = set()
{}
dict