Set Methods

 0    18 fiche    sir
baixar mp3 Imprimir jogar verifique-se
 
questão resposta
Returns a set, that is the intersection of two other sets.
começar a aprender
. intersection() / &
Removes the items in this set that are not present in other, specified set(s).
começar a aprender
. intersection_update() / &=
Returns a set containing the union of sets
começar a aprender
. union() / |
Update the set with the union of this set and others
começar a aprender
. update() / |=
Returns a set containing the difference between two or more sets.
começar a aprender
. difference() / -
Removes the items in this set that are also included in another, specified set.
começar a aprender
. difference_update() / -=
Returns a set with the symmetric differences of two sets
começar a aprender
. symmetric_difference() / ^
Inserts the symmetric differences from this set and another
começar a aprender
. symmetric_difference_update() / ^=
Returns a copy of the set.
começar a aprender
. copy()
Removes all the elements from the set.
começar a aprender
. clear()
Adds an element to the set.
começar a aprender
. add()
Removes the specified element.
começar a aprender
. remove()
Remove the specified item.
começar a aprender
. discard()
Removes an element from the set
começar a aprender
. pop()
Returns whether two sets have a intersection or not.
começar a aprender
. isdisjoint()
Returns whether another set contains this set or not.
começar a aprender
. issubset()
Returns whether this set contains another set or not.
começar a aprender
. issuperset()
Returns the length of a set. (Inner method.)
começar a aprender
. __len__

Você deve entrar para postar um comentário.