“Ustaw operatory” Kod odpowiedzi

Ustaw operatory

Ops 		P	⨯	 \	 =	 ≠
Front 		⊂	⊄	⊆	⊈	⊊ 
Back 		⊃	⊅	⊇	⊉	⊋
Inside 		∀	∃	∊	∍
Objects 	∅	∞	∆	∇
Category of Frogs

Ustaw operatory

>>> a = {1, 2, 3, 4, 5, 6}
>>> b = {4, 5, 6, 7, 8, 9}
>>>
>>> a.update(b)          # a "union" operation
>>> a
{1, 2, 3, 4, 5, 6, 7, 8, 9}
>>>
>>> a &= b               # the "intersection" operation
>>> a
{4, 5, 6, 7, 8, 9}
>>>
>>> a -= set((7, 8, 9))  # the "difference" operation
>>> a
{4, 5, 6}
>>>
>>> a ^= b               # the "symmetric difference" operation
>>> a
{7, 8, 9}
Comfortable Centipede

Odpowiedzi podobne do “Ustaw operatory”

Pytania podobne do “Ustaw operatory”

Więcej pokrewnych odpowiedzi na “Ustaw operatory” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu