Harold> To illustrate, assume I have a text file, call it test.txt, with
    Harold> the following information:

    Harold> X11 .32
    Harold> X22 .45

    Harold> My goal in the python program is to manipulate this file such
    Harold> that a new file would be created that looks like:

    Harold> X11 IPB = .32
    Harold> X22 IPB = .45

    ...

This is a problem with a number of different solutions.  Here's one way to
do it:

    for line in open(filename, "r"):
        fields = line.split()
        print fields[0], "IPB =", fields[1]

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

Reply via email to