Set Methods

 0    18 schede    sir
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
Returns a set, that is the intersection of two other sets.
inizia ad imparare
. intersection() / &
Removes the items in this set that are not present in other, specified set(s).
inizia ad imparare
. intersection_update() / &=
Returns a set containing the union of sets
inizia ad imparare
. union() / |
Update the set with the union of this set and others
inizia ad imparare
. update() / |=
Returns a set containing the difference between two or more sets.
inizia ad imparare
. difference() / -
Removes the items in this set that are also included in another, specified set.
inizia ad imparare
. difference_update() / -=
Returns a set with the symmetric differences of two sets
inizia ad imparare
. symmetric_difference() / ^
Inserts the symmetric differences from this set and another
inizia ad imparare
. symmetric_difference_update() / ^=
Returns a copy of the set.
inizia ad imparare
. copy()
Removes all the elements from the set.
inizia ad imparare
. clear()
Adds an element to the set.
inizia ad imparare
. add()
Removes the specified element.
inizia ad imparare
. remove()
Remove the specified item.
inizia ad imparare
. discard()
Removes an element from the set
inizia ad imparare
. pop()
Returns whether two sets have a intersection or not.
inizia ad imparare
. isdisjoint()
Returns whether another set contains this set or not.
inizia ad imparare
. issubset()
Returns whether this set contains another set or not.
inizia ad imparare
. issuperset()
Returns the length of a set. (Inner method.)
inizia ad imparare
. __len__

Devi essere accedere per pubblicare un commento.