Set Methods

 0    18 kartičky    sir
stáhnout mp3 Vytisknout hrát zkontrolovat se
 
otázka odpověď
Returns a set, that is the intersection of two other sets.
začněte se učit
. intersection() / &
Removes the items in this set that are not present in other, specified set(s).
začněte se učit
. intersection_update() / &=
Returns a set containing the union of sets
začněte se učit
. union() / |
Update the set with the union of this set and others
začněte se učit
. update() / |=
Returns a set containing the difference between two or more sets.
začněte se učit
. difference() / -
Removes the items in this set that are also included in another, specified set.
začněte se učit
. difference_update() / -=
Returns a set with the symmetric differences of two sets
začněte se učit
. symmetric_difference() / ^
Inserts the symmetric differences from this set and another
začněte se učit
. symmetric_difference_update() / ^=
Returns a copy of the set.
začněte se učit
. copy()
Removes all the elements from the set.
začněte se učit
. clear()
Adds an element to the set.
začněte se učit
. add()
Removes the specified element.
začněte se učit
. remove()
Remove the specified item.
začněte se učit
. discard()
Removes an element from the set
začněte se učit
. pop()
Returns whether two sets have a intersection or not.
začněte se učit
. isdisjoint()
Returns whether another set contains this set or not.
začněte se učit
. issubset()
Returns whether this set contains another set or not.
začněte se učit
. issuperset()
Returns the length of a set. (Inner method.)
začněte se učit
. __len__

Chcete-li přidat komentář, musíte se přihlásit.