Method |
Description |
add() | Adds an element to the
set |
clear() | Removes all the
elements from the set |
copy() | Returns a copy of the set |
difference() | Returns a set
containing the difference between two or more sets |
difference_update() | Removes the
items in this set that are also included in another, specified set |
discard() | Remove the specified
item |
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) |
isdisjoint() | Returns whether
two sets have a intersection or not |
issubset() | Returns whether
another set contains this set or not |
issuperset() | Returns whether
this set contains another set or not |
pop() | Removes an element from the
set |
remove() | Removes the specified element |
|
|
|
|
|
|
|
|