开发者社区> 问答> 正文

python怎么计算文档的行数据库

python怎么计算文档的行数据库

展开
收起
云计算小粉 2018-05-10 20:10:59 1647 0
1 条回答
写回答
取消 提交回答
  • 最方便的语言,最简洁的简介

    小文件读取,计算行数

    1. count = len(open(filepath,'rU').readlines())

    大文件读取,计算行数

    1. count = -1
         for count, line in enumerate(open(thefilepath, 'rU')):

           pass
       count += 1

    1. count = 0
         thefile = open(thefilepath, 'rb')

       while True:
          buffer = thefile.read(8192*1024)
          if not buffer:
             break
          count += buffer.count('n')
       thefile.close( )

    读取指定行

    import linecache

    count = linecache.getline(filename,linenum)

    2019-07-17 22:24:16
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载