vote up 1 vote down star

I have a regular list comprehension to load all lines of a file in a list

f = open('file')

try:
    self._raw = [L.rstrip('\n') for L in f]
finally:
    f.close()

Now I'd like to insert in the list each line 'n' times on the fly. How to do it inside the list comprehension ?

Tnx

flag

0% accept rate

1 Answer

vote up 6 vote down
self._raw = [L.rstrip('\n') for L in f for _ in xrange(n)]
link|flag

Your Answer

Get an OpenID
or

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