Python: split a list based on a condition? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T03:43:20Zhttp://stackoverflow.com/feeds/question/949098http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition8Python: split a list based on a condition?Parand2009-06-04T07:37:18Z2009-06-04T13:34:29Z
<p>What's the best way, both aesthetically and from a performance perspective, to split a list of items into multiple lists based on a conditional? The equivalent of:</p>
<pre><code>good = [x for x in mylist if x in goodvals]
bad = [x for x in mylist if x not in goodvals]
</code></pre>
<p>is there a more elegant way to do this?</p>
<p>Update: here's the actual use case, to better explain what I'm trying to do:</p>
<pre><code># files looks like: [ ('file1.jpg', 33L, '.jpg'), ('file2.avi', 999L, '.avi'), ... ]
IMAGE_TYPES = ('.jpg','.jpeg','.gif','.bmp','.png')
images = [f for f in files if f[2].lower() in IMAGE_TYPES]
anims = [f for f in files if f[2].lower() not in IMAGE_TYPES]
</code></pre>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/949110#9491107Answer by RichieHindle for Python: split a list based on a condition?RichieHindle2009-06-04T07:41:20Z2009-06-04T07:54:01Z<p><strong>First go</strong> (pre-OP-edit): Use sets:</p>
<pre><code>mylist = [1,2,3,4,5,6,7]
goodvals = [1,3,7,8,9]
myset = set(mylist)
goodset = set(goodvals)
print list(myset.intersection(goodset)) # [1, 3, 7]
print list(myset.difference(goodset)) # [2, 4, 5, 6]
</code></pre>
<p>That's good for both readability (IMHO) and performance.</p>
<p><strong>Second go</strong> (post-OP-edit):</p>
<p>Create your list of good extensions as a set:</p>
<pre><code>IMAGE_TYPES = set(['.jpg','.jpeg','.gif','.bmp','.png'])
</code></pre>
<p>and that will increase performance. Otherwise, what you have looks fine to me.</p>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/949121#9491212Answer by BJ Homer for Python: split a list based on a condition?BJ Homer2009-06-04T07:45:43Z2009-06-04T07:45:43Z<p>Personally, I like the version you cited, assuming you already have a list of <code>goodvals</code> hanging around. If not, something like:</p>
<pre><code>good = filter(lambda x: is_good(x), mylist)
bad = filter(lambda x: !is_good(x), mylist)
</code></pre>
<p>Of course, that's really very similar to using a list comprehension like you originally did, but with a function instead of a lookup:</p>
<pre><code>good = [x for x in mylist if is_good(x)]
bad = [x for x in mylist if !is_good(x)]
</code></pre>
<p>In general, I find the aesthetics of list comprehensions to be very pleasing. Of course, if you don't actually need to preserve ordering and don't need duplicates, using the <code>intersection</code> and <code>difference</code> methods on sets would work well too.</p>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/949124#9491240Answer by Jace Jung for Python: split a list based on a condition?Jace Jung2009-06-04T07:46:15Z2009-06-04T07:46:15Z<p>I agree with RIchieHindle. you can also check this link<br>
<a href="http://house.hcn-strela.ru/doc/python/lib/types-set.html" rel="nofollow">http://house.hcn-strela.ru/doc/python/lib/types-set.html</a></p>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/949139#9491392Answer by gimel for Python: split a list based on a condition?gimel2009-06-04T07:51:54Z2009-06-04T07:51:54Z<p>For perfomance, try <code>itertools</code>.</p>
<blockquote>
<p>The <a href="http://docs.python.org/library/itertools.html" rel="nofollow">itertools</a> module standardizes a core set of fast, memory efficient tools that are useful by themselves or in combination. Together, they form an “iterator algebra” making it possible to construct specialized tools succinctly and efficiently in pure Python.</p>
</blockquote>
<p>See <a href="http://docs.python.org/library/itertools.html#itertools.ifilter" rel="nofollow">itertools.ifilter</a> or imap.</p>
<blockquote>
<p>itertools.ifilter(predicate, iterable)</p>
<p>Make an iterator that filters elements from iterable returning only those for which the predicate is True</p>
</blockquote>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/949191#9491917Answer by winden for Python: split a list based on a condition?winden2009-06-04T08:10:50Z2009-06-04T08:26:26Z<p>Problem with all proposed solutions is that it will scan and apply the filtering function twice. I'd make a simple small function like this:</p>
<pre><code>def SplitIntoTwoLists(l, f):
a = []
b = []
for i in l:
if f(i):
a.append(i)
else:
b.append(i)
return (a,b)
</code></pre>
<p>That way you are not processing anything twice and also are not repeating code.</p>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/949490#9494906Answer by Ants Aasma for Python: split a list based on a condition?Ants Aasma2009-06-04T09:32:23Z2009-06-04T10:08:23Z<p>Here's the lazy iterator approach:</p>
<pre><code>from itertools import tee
def split_on_condition(seq, condition):
l1,l2 = tee((condition(item),item) for item in seq)
return (i for p, i in l1 if p), (i for p, i in l2 if not p)
</code></pre>
<p>It evaluates the condition once per item and returns two generators, first yielding values from the sequence where the condition is true, the other where it's false.</p>
<p>Because it's lazy you can use it on any iterator, even an infinite one:</p>
<pre><code>from itertools import count, islice
def is_prime(n):
return n > 1 and all(n % i for i in xrange(2,n))
primes, not_primes = split_on_condition(count(), is_prime)
print("First 10 primes", list(islice(primes, 10)))
print("First 10 non-primes", list(islice(not_primes, 10)))
</code></pre>
<p>Usually though the non-lazy list returning approach is better:</p>
<pre><code>def split_on_condition(seq, condition):
a, b = [], []
for item in seq:
(a if condition(item) else b).append(item)
return a,b
</code></pre>
<p>Edit: For your more specific usecase of splitting items into different lists by some key, heres a generic function that does that:</p>
<pre><code>DROP_VALUE = lambda _:_
def split_by_key(seq, resultmapping, keyfunc, default=DROP_VALUE):
"""Split a sequence into lists based on a key function.
seq - input sequence
resultmapping - a dictionary that maps from target lists to keys that go to that list
keyfunc - function to calculate the key of an input value
default - the target where items that don't have a corresponding key go, by default they are dropped
"""
result_lists = dict((key, []) for key in resultmapping)
appenders = dict((key, result_lists[target].append) for target, keys in resultmapping.items() for key in keys)
if default is not DROP_VALUE:
result_lists.setdefault(default, [])
default_action = result_lists[default].append
else:
default_action = DROP_VALUE
for item in seq:
appenders.get(keyfunc(item), default_action)(item)
return result_lists
</code></pre>
<p>Usage:</p>
<pre><code>def file_extension(f):
return f[2].lower()
split_files = split_by_key(files, {'images': IMAGE_TYPES}, keyfunc=file_extension, default='anims')
print split_files['images']
print split_files['anims']
</code></pre>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/950207#9502070Answer by Anders Eurenius for Python: split a list based on a condition?Anders Eurenius2009-06-04T12:25:01Z2009-06-04T12:25:01Z<p>If you insist on clever, you could take Winden's solution and just a bit spurious cleverness:</p>
<pre><code>def splay(l, f, d=None):
d = d or {}
for x in l: d.setdefault(f(x), []).append(x)
return d
</code></pre>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/950591#9505915Answer by dbr for Python: split a list based on a condition?dbr2009-06-04T13:28:23Z2009-06-04T13:28:23Z<blockquote>
<pre><code>good = [x for x in mylist if x in goodvals]
bad = [x for x in mylist if x not in goodvals]
</code></pre>
<p>is there a more elegant way to do this?</p>
</blockquote>
<p>That code is perfectly readable, and extremely clear!</p>
<pre><code># files looks like: [ ('file1.jpg', 33L, '.jpg'), ('file2.avi', 999L, '.avi'), ... ]
IMAGE_TYPES = ('.jpg','.jpeg','.gif','.bmp','.png')
images = [f for f in files if f[2].lower() in IMAGE_TYPES]
anims = [f for f in files if f[2].lower() not in IMAGE_TYPES]
</code></pre>
<p>Again, this is <em>fine!</em></p>
<p>There might be slight performance improvements using sets, but it's a trivial difference, and I find the list comprehension far easier to read, and you don't have to worry about the order being messed up, duplicates being removed as so on.</p>
<p>In fact, I may go another step "backward", and just use a simple for loop:</p>
<pre><code>images, anims = [], []
for f in files:
if f.lower() in IMAGE_TYPES:
images.append(f)
else:
anims.append(f)
</code></pre>
<p>The a list-comprehension or using <code>set()</code> is fine until you need to add some other check or another bit of logic - say you want to remove all 0-byte jpeg's, you just add something like..</p>
<pre><code>if f[1] == 0:
continue
</code></pre>
http://stackoverflow.com/questions/949098/python-split-a-list-based-on-a-condition/950631#9506312Answer by Brian for Python: split a list based on a condition?Brian2009-06-04T13:34:29Z2009-06-04T13:34:29Z<p><a href="http://docs.python.org/library/itertools.html#itertools.groupby" rel="nofollow">itertools.groupby</a> almost does what you want, except it requires the items to be sorted to ensure that you get a single contiguous range, so you need to sort by your key first (otherwise you'll get multiple interleaved groups for each type). eg.</p>
<pre><code>def is_good(f):
return f[2].lower() in IMAGE_TYPES
files = [ ('file1.jpg', 33L, '.jpg'), ('file2.avi', 999L, '.avi'), ('file3.gif', 123L, '.gif')]
for key, group in itertools.groupby(sorted(files, key=is_good), key=is_good):
print key, list(group)
</code></pre>
<p>gives:</p>
<pre><code>False [('file2.avi', 999L, '.avi')]
True [('file1.jpg', 33L, '.jpg'), ('file3.gif', 123L, '.gif')]
</code></pre>
<p>Similar to the other solutions, the key func can be defined to divide into any number of groups you want.</p>