Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.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.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'versions,': 0.05; 'expressions': 0.07; 'to:addr:comp.lang.python': 0.09; 'cc:addr :python-list': 0.10; 'def': 0.10; 'applies': 0.15; 'approaches.': 0.16; 'itertools': 0.16; 'nick': 0.16; 'sequence,': 0.16; 'sequence.': 0.16; 'symbols,': 0.16; '>>>': 0.18; 'skip:p 30': 0.20; 'import': 0.21; 'features,': 0.22; 'subject:skip:i 10': 0.22; 'cc:2**0': 0.23; 'split': 0.23; 'seems': 0.23; 'cc:no real name:2**0': 0.24; 'idea': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'words': 0.29; "skip:' 10": 0.30; 'help,': 0.32; "skip:' 20": 0.32; 'could': 0.32; 'received:google.com': 0.34; 'minimum': 0.34; 'thanks': 0.34; 'fresh': 0.35; 'especially': 0.35; 'received:209.85': 0.35; 'there': 0.35; 'list.': 0.35; 'best,': 0.37; 'uses': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'skip:l 20': 0.38; 'several': 0.39; 'your': 0.60; 'red': 0.60; 'interest': 0.62; 'expert': 0.62; 'drops': 0.91; 'subject:Good': 0.91 Newsgroups: comp.lang.python Date: Tue, 4 Dec 2012 17:17:56 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=124.170.17.135; posting-account=ZAg6xAoAAAAmY8bBi3VzYjWntm8Ct1P8 References: User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-IP: 124.170.17.135 MIME-Version: 1.0 Subject: Re: Good use for itertools.dropwhile and itertools.takewhile From: Nick Mellor To: comp.lang.python@googlegroups.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: python-list@python.org 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: , Message-ID: Lines: 54 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1354670286 news.xs4all.nl 6884 [2001:888:2000:d::a6]:40964 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:34267 Hi Terry, For my money, and especially in your versions, despite several expert solut= ions using other features, itertools has it. It seems to me to need less nu= tting out than the other approaches. It's short, robust, has a minimum of s= ymbols, uses simple expressions and is not overly clever. If we could just = get used to using takewhile. takewhile mines for gold at the start of a sequence, dropwhile drops the dr= oss at the start of a sequence. Thanks all for your interest and your help, Best, Nick Terry's implementations: > from itertools import takewhile >=20 > def allcaps(word): return word =3D=3D word.upper() >=20 >=20 >=20 > def split_product_itertools(s): >=20 > product =3D ' '.join(takewhile(allcaps, s.split())) >=20 > return product, s[len(product)+1:] >=20 >=20 >=20 > print(split_product_itertools("CAPSICUM RED fresh from QLD")) >=20 > >>> >=20 > ('CAPSICUM RED', 'fresh from QLD') >=20 >=20 >=20 > [if there could be surplus whitespace], the same idea applies to the spli= t list. >=20 >=20 >=20 > def split_product_itertools(s): >=20 > words =3D s.split() >=20 > product =3D list(takewhile(allcaps, words)) >=20 > return ' '.join(product), ' '.join(words[len(product):]) >=20