我正在尝试更改文本文件中的某些行而不影响其他行。这是名为“text.txt”的文本文件中的内容
this is a test1|number1
this is a test2|number2
this is a test3|number2
this is a test4|number3
this is a test5|number3
this is a test6|number4
this is a test7|number5
this is a test8|number5
this is a test9|number5
this is a test10|number5
我的目标是更改第 4 行和第 5 行,但其余部分保持不变。
mylist1=[]
for lines in open('test','r'):
a=lines.split('|')
b=a[1].strip()
if b== 'number3':
mylist1.append('{}|{} \n'.format('this is replacement','number7'))
else:
mylist1.append('{}|{} \n'.format(a[0],a[1].strip()))
myfile=open('test','w')
myfile.writelines(mylist1)
即使代码有效,我想知道是否有更好和有效的方法来做到这一点?是否可以仅按行号读取文件?