On Aug 27, 12:29 pm, "Simon Brunning" <[EMAIL PROTECTED]>
wrote:
> 2008/8/27 SimonPalmer <[EMAIL PROTECTED]>:
>
> > anyone know how I would find out how many rows are in a csv file?
>
> > I can't find a method which does this on csv.reader.
>
> len(list(csv.reader(open('my.csv'))))
>
> --
> Cheers,
> Simon B.
> [EMAIL PROTECTED]://www.brunningonline.net/simon/blog/

Not the best of ideas if the row size or number of rows is large!
Manufacture a list, then discard to get its length -- ouch!
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to