Remove Items From A Set In Python

You can remove items from a set with either `.remove()` or `.discard()`

`.remove()` will error if the target item doesn't exist

`.discard()` will not