python 读取大文件,按照字节读取

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读取大文件,按照字节读取相关的知识,希望对你有一定的参考价值。

def read_bigFile():
    f = open("123.dat",r)
    cont = f.read(10)
    while len(cont) >0 :
        print(cont)
        cont = f.read(10)
  f.close()
read_bigFile()

 

def copyFile():
    f1 = "123.dat"
    f2 = "123.dat.bak"
    #大文件复制
    fs1 = open(f1,r)
    fs2 = open(f2,w)
    cont1 = fs1.readline()

    while len(cont1)>0:
        #写入
        fs2.write(cont1)
        cont1 = fs1.readline()
    fs1.close()
    fs2.close()
copyFile()

 

以上是关于python 读取大文件,按照字节读取的主要内容,如果未能解决你的问题,请参考以下文章

python读取大词向量文件

python读取大词向量文件

Python第三天

从波形文件python读取字节

BigDataJava基础_FileInputStream的基本使用

Python - 读取 .b4u 文件 - 错误序列项 0:预期的 str 实例,找到的字节