当前位置:编程学习 > 网站相关 >>

计算某一个文件的行数

[python]  
#_*_coding:utf_8_  
import sys  
import os  
''''' 
计算某一个文件的行数 
'''  
def countFileLines(filename):  
    count = 0  
    try:  
        handle = open(filename, 'r')  
        for eachline in handle:  
            count += 1  
    except IOError, e:  
        print 'file open error', e  
    print count  
    return count  
  
countFileLines('D:/study/practice/algorithm/sort.cpp')  
          
 
补充:Web开发 , Python ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,