Python读取文件内容的三种方式并比较

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python读取文件内容的三种方式并比较相关的知识,希望对你有一定的参考价值。

本次实验的文件是一个60M的文件,共计392660行内容。

技术分享

程序一:

def one():
    start = time.clock()
    fo = open(file,r)
    fc = fo.readlines()
    num = 0
    for l in fc:
        tup = l.rstrip(\n).rstrip().split(\t)
        num = num+1
    fo.close()
    end = time.clock()
    print end-start
    print num

运行结果:0.812143868027s

程序二:

def two():
    start = time.clock()
    num = 0
    with open(file, r) as f:
        for l in f:
            tup = l.rstrip(\n).rstrip().split(\t)
            num = num+1
    end = time.clock()
    times = (end-start)
    print times
    print num

运行时间:0.74222778078

程序三:

def three():
    start = time.clock()
    fo = open(file,r)
    l = fo.readline()
    num = 0
    while l:
        tup = l.rstrip(\n).rstrip().split(\t)
        l = fo.readline()
        num = num+1
    end = time.clock()
    print end-start
    print num

运行时间:1.02316120797

由结果可得出,程序二的速度最快。

 

 

 

以上是关于Python读取文件内容的三种方式并比较的主要内容,如果未能解决你的问题,请参考以下文章

php读取文件内容的三种方法

Python项目生成requirements的三种方式

SpringBoot读取配置文件的三种方法

一日一技:Python读取包里面的数据文件的三种方法

文件的三种打开方式知识点回顾

python 逐行读取文件的三种方法