当前位置: 移动技术网 > IT编程>脚本编程>Python > python实现读取大文件并逐行写入另外一个文件

python实现读取大文件并逐行写入另外一个文件

2018年04月25日  | 移动技术网IT编程  | 我要评论

民谣吉他谱,中国白银投资网,问天网苏州

<pre name="code" class="python">creazy.txt文件有4G,逐行读取其内容并写入monday.txt文件里。 
def creazyRead(): 
  ''''' 
  with open("e:creazy.txt","r") as cr: 
    for line in cr: 
      print line 
  ''' 
  ms = open("e:creazy.txt") 
  for line in ms: 
    with open("e:monday.txt","a") as mon: 
      mon.write(line) 

另一种方法使用readlines实现:

def creazyRead(): 
  ms = open("e:creazy.txt") 
  for line in ms.readlines(): 
    with open("e:monday.txt","a") as mon: 
      mon.write(line) 

以上这篇python实现读取大文件并逐行写入另外一个文件就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网