set/frozenset
Probably an easily overlooked python builtin is "set/frozenset".
Useful when you have a list like this, [1,2,1,1,2,3,4] and only want the uniques like this [1,2,3,4].
Using set() that's exactly what you get:
>>> x = [1,2,1,1,2,3,4]
>>>
>>> set(x)
set([1, 2, 3, 4])
>>>
>>> for i in set(x):
... print i
...
1
2
3
4
And of course to get the number of uniques in a list:
>>> len(set([1,2,1,1,2,3,4]))
4
You can also find if a list is a subset of another list using, suprise, set().isasubset()
>>> set([1,2,3,4]).isasubset([0,1,2,3,4,5])
True
For more details:
http://docs.python.org/library/stdtypes.html#set