vote up 4 vote down star

I'd like to read at most 20 lines from a csv file:

rows = [csvreader.next() for i in range(20)]

Works fine if the file has 20 or more rows, fails with a StopIteration exception otherwise.

Is there an elegant way to deal with an iterator that could throw a StopIteration exception in a list comprehension or should I use a regular for loop?

flag

64% accept rate

3 Answers

vote up 8 vote down check

You can use itertools.islice. It is the iterator version of list slicing. If the iterator has less than 20 elements, it will return all elements.

import itertools
rows = list(itertools.islice(csvreader, 20))
link|flag
Thanks Ayman. It seems like list comprehensions need to be updated to deal with StopIteration, no? It appears "for" has already been updated to deal with it (it stops iterating when it encounters the exception, implicitly catching it), and I'm not seeing an obvious reason for list comprehensions not to do the same. – Parand Jul 9 at 23:25
2  
for catches the StopIteration relative to its iterable, not to other such objects in its suite. For instance c = iter(range(5)) for i in range(10): print i, c.next() will raise the StopIteration exception relative to c. – Mapio Jul 9 at 23:34
2  
A for loop does NOT implicitly catch StopIteration. It only catches it if it is thrown by the iterator's next method, not if it is thrown in the loop body. In your question, csvreader.next() is analogous to the loop body. – Miles Jul 9 at 23:34
<1 second late! shakes fist ;) – Miles Jul 9 at 23:35
That's fair, you guys are right. I guess my construct is a bit funky, iterating over the counter instead of the csv iterable, so the exception really should cause a stoppage. – Parand Jul 9 at 23:39
vote up 0 vote down

If for whatever reason you need also to keep track of the line number, I'd recommend you:

rows = zip(xrange(20), csvreader)

If not, you can strip it out after or... well, you'd better try other option more optimal from the beginning :-)

link|flag
If you need the line number, surely you should use enumerate() .. – John Fouhy Jul 10 at 0:48
vote up 0 vote down

itertools.izip (2) provides a way to easily make list comprehensions work, but islice looks to be the way to go in this case.

from itertools import izip
[row for (row,i) in izip(csvreader, range(20))]
link|flag

Your Answer

Get an OpenID
or

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