[EMAIL PROTECTED] wrote:
> sorry for asking such beginner questions but i tried this and nothing
> wrote to my text file
>
> for food, price, store in bs(food, price, store):
>               out = open("test.txt", 'a')
>               out.write (food + price + store)
>                               out.close()
>
>
> while if i write the following without the for i at least get
> something?
> out = open("test.txt", 'a')
> out.write (food + price + store)
> out.close()
>
pull the open() and close() call out of the loop. And use some other
name for the variables as they are very confusing and could be error
prone to.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to