使用python统计文件行数示例分享_python教程-查字典教程网
使用python统计文件行数示例分享
使用python统计文件行数示例分享
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:importtimedefblock(file,size=65536):whileTrue:nb=file.read(si...

复制代码 代码如下:

import time

def block(file,size=65536):

while True:

nb = file.read(size)

if not nb:

break

yield nb

def getLineCount(filename):

with open(filename,"r",encoding="utf-8") as f:

return sum(line.count("n") for line in block(f))

if __name__ == "__main__":

import sys

import os

if len(sys.argv) != 2:

print("error imput argument")

sys.exit(-1)

if not os.path.isfile(sys.argv[1]) :

print(sys.argv + " is not a file")

sys.exit(-1)

start_time = time.time()

print(getLineCount(sys.argv[1]))

print(time.time() - start_time ,"seconds")

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新python学习
    热门python学习
    脚本专栏子分类