set
type의 operation으로 union()
, intersection()
, difference()
, symmetric_difference()
가 있다.
a = set(['a', 'ab'])
b = set(['b', 'ab'])
a.union(b)
{'a', 'ab', 'b'}
a.intersection(b)
{'ab'}
a.difference(b)
{'a'}
b.difference(a)
{'b'}
a.symmetric_difference(b)
{'a', 'b'}
PREVIOUSEtc