show/hide this revision's text 2 clean up

set/frozenset

Probably an easily overlooked python builtin is "set/frozenset".

I found this useful

Useful when I had you have a list like this, [1,2,1,1,2,3,4] and wanted 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

show/hide this revision's text 1

Probably an easily overlooked python builtin is "set/frozenset".

I found this useful when I had a list like this, [1,2,1,1,2,3,4] and wanted only 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

    Post Made Community Wiki by Community