Collections Python Tutorial

s = set('ABC')
u = frozenset(s)
s = set(u)
s -= set('BC')
print s