"Lie Ryan" <lie.1...@gmail.com> wrote

with open(...) as fobj:
    entry = ''
    while entry != '.'
        fobj.write(raw_input())

But how does entry change in this example?
I think you need

with open(...) as fobj:
    entry = ''
    while entry != '.'

        fobj.write(entry)

        entry = raw_input()



--
Alan Gauld
Author of the Learn to Program web site
http://www.alan-g.me.uk/

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to