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 currently generate lists using following expression (T and no_jobs are integers):

for i in xrange(no_jobs):
    row = row + T * [i]

The first thing I came up with for converting it into a list comprehension statement was:

[T*[i] for i in xrange(no_jobs)]

But this obviously creates a nested list which is not what I'm looking for. All my other ideas seems a litle clunky so if anyone has a pythonic and elegant way of creating these types of lists I would be gratefull.

share|improve this question
for i in range(no_jobs): for x in range(T): row.append(i) – Buttons Nov 8 '11 at 8:41

2 Answers

up vote 6 down vote accepted

Nested loops.

[i for i in xrange(no_jobs) for x in xrange(T)]
share|improve this answer
Perfect, thank you! – monostop Nov 8 '11 at 8:57

But this obviously creates a nested list which is not what I'm looking for.

So just flatten the result. List addition is concatenation, so we can put all the lists together by 'summing' them (with an empty list as an "accumulator").

sum((T*[i] for i in xrange(no_jobs)), [])
share|improve this answer
-1 It doesn't do what you say it does, and it doesn't work. You need sum((T*[i] for i in xrange(no_jobs)), []) – John Machin Nov 8 '11 at 10:15
@JohnMachin Edited. I don't know how I indicated the need for an accumulator parameter and then left it out. And yes, sum does not use *args. – Karl Knechtel Nov 8 '11 at 12:47

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.