Too much code - slicing

Steven D'Aprano steve-REMOVE-THIS at cybersource.com.au
Wed Sep 22 23:49:50 EDT 2010


On Thu, 23 Sep 2010 01:49:44 +0000, Seebs wrote:

> But I do think it's unfair to dismiss it as purely a matter of baby duck
> syndrome.  Consistency in ordering of corresponding idioms seems a
> reasonable goal.

I don't see anyone bitching about:

for x in seq:
    if x:
        f(x)

vs 

[f(x) for x in seq if x]



-- 
Steven



More information about the Python-list mailing list