Modifying a row in a textfile

Diez B. Roggisch deets at nospam.web.de
Tue Sep 8 08:21:59 EDT 2009


Olli Virta wrote:

> Hi!
> 
> I got a textfile made out of database records. Is there an easy way to
> modify rows in that file in case you have to take away some items here
> and there from each rows.

for line in inf.readlines():
    if matches_criteria(line):
       line = modify_line(line)
    outf.write(line)


Diez



More information about the Python-list mailing list