Silly question:
I have a simple for loop followed by a simple if statement:

for airport in airports:
    if airport.is_important:

and I was wondering if I can write this as a single line somehow.
So, yes, I can do this:

for airport in (airport for airport in airports if airport.is_important):

but it reads so silly and redundant ("for airport in airport for airport in airports...").
Is there a better way?

link|improve this question

80% accept rate
3  
If you don't like having so many "airport"s in one line, swap three of them for a single character: for airport in (x for x in airports if x.is_important): – MattH Mar 8 '10 at 14:58
feedback

6 Answers

up vote 6 down vote accepted

No, there is no shorter way. Usually, you will even break it into two lines :

important_airports = (airport for airport in airports if airport.is_important)
for airport in important_airports:
    # do stuff

This is more flexible, easier to read and still don't consume much memory.

link|improve this answer
1  
+1: Just write what you mean. 1-liner Code Golf is not a good practice. – S.Lott Mar 8 '10 at 15:26
Thank you - I really like this answer. While not a one liner, it 'captures the spirit' of the one liner in that there is a single indentation (am I allowed to say I hate indentations while still loving Python???). No need for extra imports and by using a proper variable name the second line is perfectly readable (who cares how I implemented 'important airports'). This is my answer. Thanks again for the prompt reply! – Tal Weiss Mar 8 '10 at 18:55
feedback

Mabe this, but it's more or less the same verbose...

import itertools

for airport in itertools.ifilter(lambda x: x.is_important, airports):
    ...
link|improve this answer
Yes this is the best I could think of too. – Matt Joiner Mar 8 '10 at 14:09
FYI - codepad.org/e9pOMxV8 – Bertrand Marron Mar 8 '10 at 14:17
@tusbar so what? the op is asking for more readable alternatives, not more efficient ones... and the difference is negligible (~ +-20%), if we'd care about that margins we would be programming in C, not in Python :-p – fortran Mar 8 '10 at 14:29
1  
Actually, thank you for that @tusbar! I didn't ask for it but it is very informative (as someone who often optimizes code) and @fortran: these small differences add up very quickly in a big project. I added the answer I liked most to the snippet and it is actually faster!: codepad.org/CN5jsYhX – Tal Weiss Mar 8 '10 at 19:05
feedback

You could do

for airport in filter(lamdba x: x.is_important, airports):
    # do stuff...
link|improve this answer
Depending on the size of your list, or rather the number of important airports, I think this is the best way. Its easy to read, once you've figured out lambda. – twall May 22 at 21:07
feedback

I'd use a negative guard on the loop. It's readable, and doesn't introduce an extra level of indentation.

for airport in airports:
    if not airport.is_important: continue
    <body of loop>
link|improve this answer
feedback

This is a design philosophy of python. If it takes you too many words to put it on one line, it should be broken into a few lines to help the person who comes after you. List and generator expressions are more for transforming iterables in-place -- making more readable forms of map and filter.

link|improve this answer
feedback

Using list comprehension (only if airports is a list of objects):

for airport in [a for a in airports if a.is_important]:
link|improve this answer
1  
this is completely wrong, it doesn't do what the OP is asking for, it iterates over the boolean values... basically, it's a map, not a filter! – fortran Mar 8 '10 at 14:15
1  
It will iterate over a list of bools. – wRAR Mar 8 '10 at 14:15
yes you're correct. Just fixed it :) – rogeriopvl Mar 8 '10 at 14:19
2  
@rogeriopvl: your corrected version would then be a less efficient copy of the code the OP started with (and wanted an alternative for). – ChristopheD Mar 8 '10 at 14:21
@rogeriopvl now you have the same version as the op, only with a list comprehension instead of an iterator expression – fortran Mar 8 '10 at 14:21
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.