博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 文件行数读取的三种方法
阅读量:5077 次
发布时间:2019-06-12

本文共 423 字,大约阅读时间需要 1 分钟。

Python三种文件行数读取的方法:

 

#文件比较小count = len(open(r"d:\lines_test.txt",'rU').readlines())print count#文件比较大count = -1for count,line in enumerate(open(r"d:\lines_test.txt",'rU')):passcount += 1print count#更好的方法count = 0thefile = open(r"d:\lines_test.txt",'rb')while True:buffer = thefile.read(1024 * 8192)if not buffer:breakcount += buffer.count('\n')thefile.close()print count

 

转载于:https://www.cnblogs.com/xiaoniu-666/p/10386067.html

你可能感兴趣的文章
转化课-计算机基础及上网过程
查看>>
android dialog使用自定义布局 设置窗体大小位置
查看>>
ionic2+ 基础
查看>>
互联网模式下我们更加应该“专注”
查看>>
myeclipse集成jdk、tomcat8、maven、svn
查看>>
查询消除重复行
查看>>
Win 10 文件浏览器无法打开
查看>>
HDU 1212 Big Number(C++ 大数取模)(java 大数类运用)
查看>>
-bash: xx: command not found 在有yum源情况下处理
查看>>
[leetcode]Minimum Path Sum
查看>>
内存管理 浅析 内存管理/内存优化技巧
查看>>
hiho1079 线段树区间改动离散化
查看>>
【BZOJ 5222】[Lydsy2017省队十连测]怪题
查看>>
第二次作业
查看>>
【input】 失去焦点时 显示默认值 focus blur ★★★★★
查看>>
Java跟Javac,package与import
查看>>
day-12 python实现简单线性回归和多元线性回归算法
查看>>
Json格式的字符串转换为正常显示的日期格式
查看>>
[转]使用 Razor 进行递归操作
查看>>
[转]Android xxx is not translated in yyy, zzz 的解决方法
查看>>