There can be cases when you may need to find the difference between 2 sets in Python. If you do not remember from high school, the difference between 2 sets means that we get the elements from the first set that are not in the second set.
We can do that quite easily in Python using the minus operator.
Continue reading