: 目前这是处理过一次的档案,是使用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)