## 小文件
#file=r"c:\users\zm.com\desktop\20140106.txt"
#count=len(open(file,‘ru‘).readlines())
#print(count)
##大文件
#file=r"C:\Users\zm.com\Desktop\20140224.txt"
#count=-1
#for count,line in enumerate(open(file,‘rU‘).readlines()):
# count += 1
#print(count)
#利用统计换行符数量的方法(不太适应于一些没有标题的数据文本,因为开头第一行并没有换行符,所以读只有一行的数据,count==1)
file=r"C:\Users\zm.com\Desktop\20140224.txt"
count=1 #第一行没有换行符
opfile=open(file,‘rb‘)
while True:
buffer=opfile.read(8192*1024)
if not buffer:
break
buffer=buffer.decode()
count += buffer.count(‘\n ‘)
opfile.close()
print(count)
filename=r"C:\Users\zm.com\Desktop\N20140224.txt"
with open(filename,‘w‘)as f:
f.writelines(["20140224:",",",str(count)])
参考链接:https://blog.csdn.net/shandong_chu/article/details/70173952
翻译 朗读 复制 正在查询,请稍候…… 重试 朗读 复制 复制 朗读 复制 via 谷歌翻译(国内) 译
原文:https://www.cnblogs.com/stelliformzm/p/12940102.html