python如何判断一个文件的行数
Python中判断一个文件行数的方法
#encoding=utf-8 #文件比较小 count=len(open(r"train.data",'rU').readlines()) print(count) #文件比较大 count=-1 for count, line in enumerate(open(r"train.data",'rU')): pass count+=1 print(count) #更好的方法 count=0 thefile=open("train.data") while True: buffer=thefile.read(1024*8192) if not buffer: break count+=buffer.count(' ') thefile.close() print(count)
输出结果
第三种方法的核心思想是统计缓存中回车换行字符的个数。这可能是最不容易直接想到的方法,也是最不通用的方法。
最快的方法是用循环处理文件对象,而最慢的方法是统计换行符的个数。
推荐学习《Python教程》!
来源:PY学习网:原文地址:https://www.py.cn/article.html