Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.023 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:two': 0.07; 'items)': 0.09; 'subject:into': 0.09; 'cc:addr:python-list': 0.11; 'def': 0.12; 'item)': 0.16; 'subject:based': 0.16; 'to:addr:web.de': 0.16; 'wrote:': 0.18; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; "i've": 0.25; 'header:In-Reply-To:1': 0.27; 'received:209.85.217': 0.29; 'subject:list': 0.30; 'message- id:@mail.gmail.com': 0.30; 'that.': 0.31; "i'd": 0.34; 'received:209.85': 0.35; 'received:google.com': 0.35; 'subject:?': 0.36; 'received:209': 0.37; 'read': 0.60; 'tell': 0.60; 'today.': 0.61; 'otten': 0.84; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=E+7Ur6xAh94rGlPqmwcZCEOmcN2L3bPHGsPwZ7Don8M=; b=uFw1anYDTabDCr4EWn5n2X9UwYy0gtBLxOF+7KE0f8wagyLenebMiauYMgfirRg++c YbW4YhAxBpvLVbHyxDutHkUeGrHeb/Me2fIFnBEwYdW69KSOWwcuVuYN59wMAd9AzlWe EC5uC3rEr/h/xUCxhG9m1FvKEi310iXYtxzmDbLnrKwMbEMYWHk4cgvvYybc6aVj6LvN bjs3VMK/OD3TAQ1sP0eQAuFTV95ykZXmB4EhSp1t6WvHjZnD16zlF81dI0XVmISatmzh ztZbKZ1ttiNQzcCKZKid9rUBxX73j3jGtc6FdLYFefWLBP1chXeVyjz3V0iBracXECso 15Og== X-Received: by 10.152.121.73 with SMTP id li9mr7600215lab.42.1370960616348; Tue, 11 Jun 2013 07:23:36 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: From: Joshua Landau Date: Tue, 11 Jun 2013 15:22:56 +0100 Subject: Re: Split a list into two parts based on a filter? To: Peter Otten <__peter__@web.de> Content-Type: text/plain; charset=UTF-8 Cc: python-list X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 8 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1370960618 news.xs4all.nl 15962 [2001:888:2000:d::a6]:38768 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:47662 On 11 June 2013 01:11, Peter Otten <__peter__@web.de> wrote: > def partition(items, predicate=bool): > a, b = itertools.tee((predicate(item), item) for item in items) > return ((item for pred, item in a if not pred), > (item for pred, item in b if pred)) I have to tell you this is the coolest thing I've read today. I'd never have thought of that.