That worked, Thanks!

Vincent Davis
720-301-3003

On Thu, Oct 15, 2015 at 6:11 AM, Peter Otten <__pete...@web.de> wrote:

> Oscar Benjamin wrote:
>
> > On 15 October 2015 at 09:16, Peter Otten <__pete...@web.de> wrote:
> >>
> >> def preprocess(filename):
> >>     with open(filename) as f:
> >>         for row in csv.reader(f):
> >>             # do stuff
> >>             yield row
> >>
> >> rows = preprocess("pandas.csv")
> >
> > Take the with statement outside of the generator and do something like:
>
> When will I ever learn :(
>
> --
> https://mail.python.org/mailman/listinfo/python-list
>
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to