Set
A set is an ordered collection of objects, with no duplicates.
Operations
All the set operators, such as intersection, difference, symmetric difference, union and concatenation, are supported.
Updating
The method set.delete(obj)
can be used for removing a given object from the set.
Last updated