Collections Python Tutorial

s = set('ABC')
t = frozenset('bookBC')
print t | s
print t ^ s
print t - s