後我有很多我不需要信息的txt文件。以下程序適用於大部分文件。我的問題是,當我找到具有"OB"
的行時,我想要打印所有行after "OB" and before "CB"
。我不知道這些行包含了什麼,所以我不能搜索它們,並且可能有一行在之間,或者在與"OB" and "CB"
之間的行之間有25行。打印其他行完成搜索
這是太混亂?
f=open('temp.txt','r')
f1=open('newtemp.txt', 'a')
a ='PN'
b = 'OB'
c = 'CB'
for line in f.readlines():
if a in line:
print (line)
if b in line:
print (line)
if c in line:
print (line)
f1.close()
f.close()
'f1'從未使用 –