foo = [x for x in bar if x.occupants > 1]

After googling and searching on here, couldn't figure out what this does. Maybe I wasn't searching the right stuff but here it is. Any input in debunking this shorthand is greatly appreciated.

link|improve this question

4  
en.wiktionary.org/wiki/debunk Do you want us to discredit, or expose to ridicule it? – gnibbler Jun 25 '11 at 2:02
1  
@Greg, using google isn't always the most efficient way to find information. Sometimes it's quicker to just read the manual – gnibbler Jun 25 '11 at 2:06
1  
@Greg, I meant like end to end - at least once. Otherwise you will miss out on lots of great stuff – gnibbler Jun 25 '11 at 2:11
4  
you can finish python tutorial in 1 hour end to end, but you prefer google – Anurag Uniyal Jun 25 '11 at 2:16
4  
He just needed a pointer. Leave him alone. – Paul Hildebrandt Jun 25 '11 at 8:05
show 7 more comments
feedback

5 Answers

up vote 7 down vote accepted

That is a list comprehension: http://docs.python.org/tutorial/datastructures.html#list-comprehensions

link|improve this answer
feedback

It's a list comprehension

foo will be a filtered list of bar containing the objects with the attribute occupants > 1

bar can be a list, set, dict or any other iterable

Here is an example to clarify

>>> class Bar(object):
...   def __init__(self, occupants):
...     self.occupants = occupants
... 
>>> bar=[Bar(0), Bar(1), Bar(2), Bar(3)]
>>> foo = [x for x in bar if x.occupants > 1]
>>> foo
[<__main__.Bar object at 0xb748516c>, <__main__.Bar object at 0xb748518c>]

So foo has 2 Bar objects, but how do we check which ones they are? Lets add a __repr__ method to Bar so it is more informative

>>> Bar.__repr__=lambda self:"Bar(occupants={0})".format(self.occupants)
>>> foo
[Bar(occupants=2), Bar(occupants=3)]
link|improve this answer
feedback

This return a list which contains all the elements in bar which have occupants > 1.

link|improve this answer
feedback

The way this should work as far as I can tell is it checks to see if the list "bar" is empty (0) or consists of a singleton (1) via x.occupants where x is a defined item within the list bar and may have the characteristic of occupants. So foo gets called, moves through the list and then returns all items that pass the check condition which is x.occupant.

In a language like Java, you'd build a class called "x" where 'x' objects are then assigned to an array or similar. X would have a Field called "occupants" and each index would be checked with the x.occupants method which would return the number that is assigned to occupant. If that method returned greater than 1 (We assume an int here as a partial occupant would be odd.) the foo method (being called on the array or similar in question.) would then return an array or similar as defined in the foo method for this container array or what have you. The elements of the returned array would be the 'x' objects in the first array thingie that fit the criteria of "Greater than 1".

Python has built-in methods via list comprehension to deal with this in a much more succinct and vastly simplified way. Rather than implementing two full classes and several methods, I write that one line of code.

link|improve this answer
See the example I added to my answer – gnibbler Jun 25 '11 at 3:27
feedback
foo = [x for x in bar if x.occupants > 1]

This is a list comprehension example. Find the more details in the documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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