python处理文本文件
作者:互联网
打开文件、逐行处理、未完
#-*- coding: UTF-8 -*-
f=open("08.log")
i=1
while i<200:
lines=f.readlines(200)
if not lines:
break
for line in lines:
i= i+1
print(line)
print(line.split(' '))
print(line.split(' ')[3]+'----------'+line.split(' ')[7])
f.close()
标签:python,readlines,lines,处理,split,文本文件,print,line,逐行 来源: https://www.cnblogs.com/pgbblag/p/12722144.html