: 目前這是處理過一次的檔案,是使用readline做成目前的樣子的。
: G並不是我要的資料,有辦法跳過G,去讀下一行的函式嗎?
: 謝謝
if有用過嗎?code寫得很爛,隨便看看吧
i=0
with open('D:\\python\\1.txt', 'rb') as f:
for line in f:
if line.startswith('G'):
output = str(i)
i+=1
else:
print 'write "%s" to %s.txt' % (line.strip(), output)