Collections Python Tutorial

s = set('ABC')
t = frozenset('CBDEF')
print 'k' in s
print 'k' in t
print 'c'  not in t