0
我有許多行的測試文件。我想刪除具有特定開始和結束字符的行。如何刪除以特定字符開頭和結尾的文件的明確行
這裏是我的代碼:
with open('test.txt', 'r') as f, open('output.txt', 'w') as out:
for i, line in enumerate(f):
if (line.startswith('E3T') and line.endswith('3')):
out.write(line)
elif (line.startswith('E4Q') and line.endswith('3')):
out.write(line)
elif (line.startswith('E4Q') and line.endswith('4')):
out.write(line)
elif (line.startswith('E4Q') and line.endswith('3')):
out.write(line)
elif line.startswith('BC'):
break
這是我的test.txt文件
E3T 1 2 1 3 3
E3T 2 4 2 5 1
E3T 3 3 5 2 4
E3T 3326 2001 2008 1866 10
E4Q 3327 1869 2013 2011 1867 9
E4Q 3328 1867 2011 2012 1868 8
E4Q 3329 1870 2014 2013 1869 4
E3T 8542 4907 4908 4760 5
E3T 8543 4768 4909 4761 9
E3T 8544 4909 4763 4761 6
E3T 17203 9957 9964 10161 3
E3T 17204 9957 10161 9959 2
BC 1 "Zulauf: Temperatur" 12 0 1 "HYDRO_WT-2D"
BC_DEF 12 1 "Temperatur [°C]" 5 "Zeit [s]" "Temperatur [°C]"
和輸出應該是這樣的:
E3T 1 2 1 3 3
E3T 3 3 5 2 4
E4Q 3329 1870 2014 2013 1869 4
E3T 17203 9957 9964 10161 3
我認爲,它確實因空間而不工作。有沒有這樣做pythonic方式,或者我必須拆分線,然後比較第一和最後charachters?
謝謝你的解決方案!如果我想寫下其餘的線並且不要中斷,我該怎麼辦?這意味着文件的其餘部分應該與輸入文件相同! –
請參閱編輯。 –