Python中判断一个文件行数的方法
#encoding=utf-8 #文件比较小 count=len(open(r"train.data",'rU').readlines()) print(count) #文件比较大 count=-1 forcount,lineinenumerate(open(r"train.data",'rU')): pass count+=1 print(count) #更好的方法 count=0 thefile=open("train.data") whileTrue: buffer=thefile.read(1024*8192) ifnotbuffer: break count+=buffer.count('\n') thefile.close() print(count)
输出结果
第三种方法的核心思想是统计缓存中回车换行字符的个数。这可能是最不容易直接想到的方法,也是最不通用的方法。
最快的方法是用循环处理文件对象,而最慢的方法是统计换行符的个数。
原文来自:https://www.py.cn© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容