I'm currently looking for a way to write to beginning and end of every line of a TXT file in Python. For example,

Current TXT document:

Jimmy
Was
Here

Write the 1st VALUE to the beginning of every line

111Jimmy
111Was
111Here

Write the 2nd VALUE to the end of every line

111Jimmy222
111Was222
111Here222

Can't seem to find anything on Google that describes how to properly have this done. I've found methods of writing to specific lines, but not all of them in this way. Any help is appreciated! Thanks!

link|improve this question

78% accept rate
feedback

4 Answers

up vote 5 down vote accepted
prefix = '111'
suffix = '222'

with open('source.txt', 'r') as src:
    with open('dest.txt', 'w') as dest:
       for line in src:
           dest.write('%s%s%s\n' % (prefix, line.rstrip('\n'), suffix))
link|improve this answer
+1 for using with and generators. – zekel Oct 28 '11 at 19:01
2  
i don't see any generators, but +1 for the with – Paul Woolcock Oct 28 '11 at 19:14
feedback

You can make changes to the file without opening multiple files by using fileinput with inplace=1:

import fileinput
for line in fileinput.input('test.txt', inplace=1):
    print '{0}{1}{2}'.format('111', line.rstrip('\n'), '222')
link|improve this answer
On Python 2.5 or below replace the print line with print '%s%s%s' % ('111', line[:-1], '222') – F.J Oct 28 '11 at 18:59
-1: NEVER use line[:-1], in case the last line is not terminated. Use line.rstrip('\n') – John Machin Oct 28 '11 at 20:42
@JohnMachin - Good point, edited my answer to use rstrip. – F.J Oct 28 '11 at 20:52
feedback

Assuming you have read the file using readlines() in a list you can do

value1 = "" # appended at first
value2 = "" # appended at last
data = file.readlines()
data = [ ( value1 + str.rstrip('\n') + value2 + "\n" ) for str in data ]

and then write data back to the file....

link|improve this answer
This has to hold the entire file in memory, as opposed to Steven Rumbalski's answer. – zekel Oct 28 '11 at 19:02
feedback
f1o = open("input.txt", "r")
f2o = open("output.txt", "w")

for line in f1o:
    f2o.write("111%s222\n" % line.replace("\n"))

f1o.close()
f2o.close()
link|improve this answer
replace takes two arguments. – Steven Rumbalski Oct 28 '11 at 18:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.