Set Methods

 0    18 fiszek    sir
ściągnij mp3 drukuj graj sprawdź się
 
Pytanie Odpowiedź
Returns a set, that is the intersection of two other sets.
rozpocznij naukę
. intersection() / &
Removes the items in this set that are not present in other, specified set(s).
rozpocznij naukę
. intersection_update() / &=
Returns a set containing the union of sets
rozpocznij naukę
. union() / |
Update the set with the union of this set and others
rozpocznij naukę
. update() / |=
Returns a set containing the difference between two or more sets.
rozpocznij naukę
. difference() / -
Removes the items in this set that are also included in another, specified set.
rozpocznij naukę
. difference_update() / -=
Returns a set with the symmetric differences of two sets
rozpocznij naukę
. symmetric_difference() / ^
Inserts the symmetric differences from this set and another
rozpocznij naukę
. symmetric_difference_update() / ^=
Returns a copy of the set.
rozpocznij naukę
. copy()
Removes all the elements from the set.
rozpocznij naukę
. clear()
Adds an element to the set.
rozpocznij naukę
. add()
Removes the specified element.
rozpocznij naukę
. remove()
Remove the specified item.
rozpocznij naukę
. discard()
Removes an element from the set
rozpocznij naukę
. pop()
Returns whether two sets have a intersection or not.
rozpocznij naukę
. isdisjoint()
Returns whether another set contains this set or not.
rozpocznij naukę
. issubset()
Returns whether this set contains another set or not.
rozpocznij naukę
. issuperset()
Returns the length of a set. (Inner method.)
rozpocznij naukę
. __len__

Musisz się zalogować, by móc napisać komentarz.