Set Methods

 0    18 cartonașe    sir
descarcă mp3 printează joacă Testează-te
 
Întrebare Răspuns
Returns a set, that is the intersection of two other sets.
începe să înveți
. intersection() / &
Removes the items in this set that are not present in other, specified set(s).
începe să înveți
. intersection_update() / &=
Returns a set containing the union of sets
începe să înveți
. union() / |
Update the set with the union of this set and others
începe să înveți
. update() / |=
Returns a set containing the difference between two or more sets.
începe să înveți
. difference() / -
Removes the items in this set that are also included in another, specified set.
începe să înveți
. difference_update() / -=
Returns a set with the symmetric differences of two sets
începe să înveți
. symmetric_difference() / ^
Inserts the symmetric differences from this set and another
începe să înveți
. symmetric_difference_update() / ^=
Returns a copy of the set.
începe să înveți
. copy()
Removes all the elements from the set.
începe să înveți
. clear()
Adds an element to the set.
începe să înveți
. add()
Removes the specified element.
începe să înveți
. remove()
Remove the specified item.
începe să înveți
. discard()
Removes an element from the set
începe să înveți
. pop()
Returns whether two sets have a intersection or not.
începe să înveți
. isdisjoint()
Returns whether another set contains this set or not.
începe să înveți
. issubset()
Returns whether this set contains another set or not.
începe să înveți
. issuperset()
Returns the length of a set. (Inner method.)
începe să înveți
. __len__

Trebuie să te autentifici pentru a posta un comentariu.