Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'false,': 0.07; 'subject:skip:c 10': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'terry': 0.09; 'boolean': 0.16; 'inserting': 0.16; 'iteration': 0.16; 'lambda': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'subject:Filter': 0.16; 'subject:versus': 0.16; 'wrote:': 0.17; 'comparing': 0.17; 'examples': 0.18; 'jan': 0.18; '>>>': 0.18; 'wednesday,': 0.22; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'am,': 0.27; 'header:X-Complaints- To:1': 0.28; 'lines': 0.28; 'comparison': 0.29; 'function': 0.30; 'quotes': 0.33; 'to:addr:python-list': 0.33; 'received:org': 0.36; 'wanted': 0.36; 'subject: (': 0.36; 'turn': 0.36; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'takes': 0.39; 'skip:" 10': 0.40; 'header:Received:5': 0.40; 'your': 0.60; 'agent': 0.64; 'august': 0.66; 'received:fios.verizon.net': 0.84; 'items,': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Filter versus comprehension (was Re: something about split()???) Date: Fri, 24 Aug 2012 12:04:54 -0400 References: <581D4160B04DF541A763BB8BB60E8CC6A747B70A66@PDC-MAIL-CMS01.ubisoft.org> <502A865E.4030504@sequans.com> <960e4798-745b-4e9b-aedb-14aae986d086@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-173-75-251-66.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 In-Reply-To: <960e4798-745b-4e9b-aedb-14aae986d086@googlegroups.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 35 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1345824330 news.xs4all.nl 6869 [2001:888:2000:d::a6]:38183 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:27808 On 8/24/2012 10:44 AM, Ramchandra Apte wrote: > On Wednesday, 22 August 2012 22:13:04 UTC+5:30, Terry Reedy wrote: >> >>> timeit.timeit("list(i for i in ranger if False)", "ranger=range(0)") >> >> 0.91 >> >> >>> timeit.timeit("list(i for i in ranger if False)", "ranger=range(20)") >> >> 1.28 >> >> >>> timeit.timeit("list(filter(lambda i: False, ranger))", >> >> "ranger=range(0)") >> >> 0.83 >> >> >>> timeit.timeit("list(filter(lambda i: False, ranger))", >> >> "ranger=range(20)") >> >> 2.60 Your mail agent in inserting blank lines in quotes -- google? See if you can turn that off. > Your examples with lambda i:False are unrealistic - you are comparing > `if False` vs (xx) - function call vs boolean check That is exactly the comparison I wanted to make. The iteration + boolean check takes .37 for 20 items, the iteration + call 1.77. -- Terry Jan Reedy