如何在Python中写入文件中的特定行?

2024-09-28 21:53:24 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个文件格式:

xxxxx
yyyyy
zzzzz
ttttt

我需要在xxxxx和yyyyy行之间写入文件,如下所示:

xxxxx
my_line
yyyyyy
zzzzz
ttttt 

Tags: 文件mylinexxxxxtttttyyyyyyyyyyyzzzzz
2条回答
with open('input') as fin, open('output','w') as fout:
    for line in fin:
        fout.write(line)
        if line == 'xxxxx\n':
           next_line = next(fin)
           if next_line == 'yyyyy\n':
              fout.write('my_line\n')
           fout.write(next_line)

这将在文件中每次出现xxxxx\nyyyyy\n之间插入一行。

另一种方法是编写一个函数来产生行,直到它看到xxxxx\nyyyyy\n

 def getlines(fobj,line1,line2):
     for line in iter(fobj.readline,''):  #This is necessary to get `fobj.tell` to work
         yield line
         if line == line1:
             pos = fobj.tell()
             next_line = next(fobj):
             fobj.seek(pos)
             if next_line == line2:
                 return

然后您可以使用这个直接传递给writelines

with open('input') as fin, open('output','w') as fout:
    fout.writelines(getlines(fin,'xxxxx\n','yyyyy\n'))
    fout.write('my_line\n')
    fout.writelines(fin)

如果文件很小,那么您只需使用str.replace()

>>> !cat abc.txt
xxxxx
yyyyy
zzzzz
ttttt

>>> with open("abc.txt") as f,open("out.txt",'w') as o:
    data=f.read()
    data=data.replace("xxxxx\nyyyyy","xxxxx\nyourline\nyyyyy")
    o.write(data)
   ....:     

>>> !cat out.txt
xxxxx
yourline
yyyyy
zzzzz
ttttt

对于一个大文件,使用mgilson的方法。

相关问题 更多 >