python 代码收藏

简易计算小文本文件的行数
fobj=open(filepath,mode)
count=fobj.readlines()
print count
即可
对文件如果过大的话,需要另外写脚本
 
return max(len(x.strip()) for x in open( filepath))
 
 
f=open(filename,mode)
alllines=(len(x.strip()) for x in f)
f.closed()
列表解析实例  
 
 
 

posted on 2013-01-09 17:29  zthua  阅读(141)  评论(0编辑  收藏  举报

导航