Re: [Tutor] searching a text file

2007-09-05 Thread Kent Johnson
زياد بن عبدالعزيز الباتلي wrote: > Alan Gauld wrote: >> "Diana Hawksworth" <[EMAIL PROTECTED]> wrote >> >>> How do I find a particular name, change the score and then save >>> the changes back to the text file again?? >> iterate over the file checking (and modifying) each line >> write the line bac

Re: [Tutor] searching a text file

2007-09-05 Thread زياد بن عبدالعزيز البات لي
Alan Gauld wrote: > "Diana Hawksworth" <[EMAIL PROTECTED]> wrote > >> How do I find a particular name, change the score and then save >> the changes back to the text file again?? > > iterate over the file checking (and modifying) each line > write the line back out: > > Pseudo code > > Out = op

Re: [Tutor] searching a text file

2007-09-04 Thread Alan Gauld
"Diana Hawksworth" <[EMAIL PROTECTED]> wrote > How do I find a particular name, change the score and then save > the changes back to the text file again?? iterate over the file checking (and modifying) each line write the line back out: Pseudo code Out = open('foo.txt','w') for line in file('f