The root of your problem is that you're trying to read and write to the same file object. You need to create a new file instead.
However, there are a few other things that you should consider cleaning up first...
First off, you can simplify things by just iterating over the file object directly instead of using a while loop. E.g.:
flags = {'1oMZgkoaz3o': 'flag1', 'tJuLnRrAcs0': 'flag2'}
# The "with" statement automatically closes the file when we're done with it
with open('test.txt', 'r') as infile:
# If we just iterate over the open file, we're iterating over the lines in it
for line in infile:
line = line.strip().split()
key = line[0]
# I'm using "flags.get" with a default arugment here. If "key" isn't in
# "flags", then an empty string will be returned.
line.append(flags.get(key, ''))
print ' '.join(line)
In this example, we're just printing the output we want. If the file is small, then we could easily do something like this
flags = {'1oMZgkoaz3o': 'flag1', 'tJuLnRrAcs0': 'flag2'}
with open('test.txt', 'r') as infile:
# Load the entire contents of the file into memory...
lines = infile.readlines()
with open('test.txt', 'w') as outfile:
for line in lines:
print line
line = line.strip().split()
line.append(flags.get(line[0], ''))
outfile.write(' '.join(line) + '\n')
However, if it's a large file, we may not want to read an entire copy into memory.
In that case, we'd want to do iterate over the original file and write to a different file. Then we'd need to rename the new file to the original file's name.
If we want to be very careful, we'd do something like the following:
import os
flags = {'1oMZgkoaz3o': 'flag1', 'tJuLnRrAcs0': 'flag2'}
infile = open('test.txt', 'r')
outfile = open('test2.txt', 'w')
try:
# Try to do this...
for line in infile:
line = line.strip().split()
line.append(flags.get(line[0], ''))
outfile.write(' '.join(line) + '\n')
finally:
# Do this no matter what...
infile.close()
outfile.close()
# If nothing goes wrong, do this...
os.remove('test.txt')
os.rename('test2.txt', 'test.txt')
The try:... finally:... part is essentially manually doing what a with statement does for a file object. It's arguably a bit cleaner than nesting two with statements in this particular case, but I'm mostly using it to show the alternate (older) syntax for doing this. Ideally, you'd probably write that piece of code similar to this:
import os
def main():
flags = {'1oMZgkoaz3o': 'flag1', 'tJuLnRrAcs0': 'flag2'}
with open('test.txt', 'r') as infile:
with open('test2.txt', 'w') as outfile:
append_flags(infile, outfile, flags)
os.remove('test.txt')
os.rename('test2.txt', 'test.txt')
def append_flags(infile, outfile, flags):
for line in infile:
line = line.strip().split()
line.append(flags.get(line[0], ''))
outfile.write(' '.join(line) + '\n')
main()
However, we're clearly getting more complex the further we go with this.
In your case, the second example (reading the entire file into memory and then writing over the original file) is probably what you want.