Method 1
Method 1
difference() - Returns a set containing the difference between two or more set
difference_update() -= Removes the items in this set that are also included in another,
specified set
intersection() & Returns a set, that is the intersection of two other sets
intersection_update() &= Removes the items in this set that are not present in other,
specified set(s)
issubset() <= Returns whether another set contains this set or not
specified set(s)
issuperset() >= Returns whether this set contains another set or not
update() |= Update the set with the union of this set and others