python读文件逐行处理的示例代码分享
import os ## for os.path.isfile()
def dealline(line) :
print(line) ## 针对line我可以做很多事情
def getfilename() :
return input('Please input file name(input exit() for exit):').strip()
class more : ## MORE功能
linenum = 0
size = 10
def work(self) :
if self.linenum >= self.size :
if input('--MORE--').strip().lower() == 'exit()' :
return False
self.linenum = 0
else :
self.linenum += 1
return True
while True :
try :
filename = getfilename()
if filename.lower() == 'exit()' : ## 退出
break
if os.path.isfile(filename) : ## 判断文件是否存在
f = open(filename)
try :
lines = f.readlines()
m = more()
for line in lines:
if False == m.work() :
break
dealline(line)
## input()
finally :
f.close()
else :
print('File does not exists.')
##input()
except :
print('Input Error!')
还可以用
with open(filename) as fh:
for line in fh:
yield line
输出每一行
相关文章
Pandas如何将Timestamp转为datetime类型
这篇文章主要介绍了Pandas如何将Timestamp转为datetime类型,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2022-07-07
Selenium获取登录Cookies并添加Cookies自动登录的方法
这篇文章主要介绍了Selenium获取登录Cookies并添加Cookies自动登录的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-12-12


最新评论