Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following statement in a python routine:

return [hulls[h][i] for h, i in hull]

And I can't figure out what it does actually return.

I mean, hulls is a list of hull, so 'hulls[n]' is of type 'hull'. Additionally, hull is of type 'Point' hull is a list of points, but

for h, i in hull? 

The docs don't mention why and how you can perform such a call, and it smells like some sort of list comprehension call, but I still can't read that syntax properly.

So I'd like help in understanding how you can translate the sentence in pseudocode, or c#

Thanks a lot.

share|improve this question
"hull is of type 'Point'" - no, it isn't, assuming the code actually works as written. It's a sequence of points. – Karl Knechtel Nov 5 '11 at 17:38
Thanks for the correction – roamcel Nov 5 '11 at 18:05

3 Answers

up vote 3 down vote accepted

Yes, it is list comprehension. Your return statement could be rewritten less compactly as:

result = []
for h, i in hull:
    result.append(hulls[h][i])
return result
share|improve this answer
Thanks! One more thing though: the 'for h, i' mean that BOTH counters increase at the same time, or something else? – roamcel Nov 5 '11 at 17:23
2  
[i*j for i,j in [(1,2), (3,4), (5,6)]] returns [2 (which is 1*2), 12 (which is 3*4), 30 (which is 5*6)]. Basically, for i,j in blah means iterate over the items in blah, and unpack each one onto i,j. What does the variable hull represent? It should be a list of tuples, or lists, or something else that can be unpacked into two items. – Ord Nov 5 '11 at 17:32

Hulls looks to be a two dimensional array of things. Hull is a list of pairs of ints (x,y). For each coordinate in Hull, it returns the item in hulls in that place.

share|improve this answer
The h,I unpacked the Tupperware and assigns the first item to h and the second to I. – canard Nov 5 '11 at 17:27
Thanks. Your reply and David's completely cleared my doubts, yet I must accept David's for completeness. – roamcel Nov 5 '11 at 17:27
1  
You should accept mine for amusing autocorrect. – canard Nov 5 '11 at 17:28
Sure you don't mean abusing autocorrect? ;) – Karl Knechtel Nov 5 '11 at 17:39

Yes, David is correct. If you're still confused about the line for h, i in hull: I think it means that hull is a list of tuples that have multiple elements. So you're using every element in hull to use as indices for hulls.

share|improve this answer
thanks for the clarification – roamcel Nov 5 '11 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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