读写文件

Posted xiaoxiaocaicai

tags:

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

import re

def readfile(path):
f=open(path)
lines=f.readlines()
f.close()

return lines

def writefile(path,lines):
f=open(path,‘w‘)
f.writelines(lines)
f.close()

def processContents(lines):
for i in range(len(lines)):
if(lines[i]):
lines[i] = re.sub(‘http:‘,‘https:‘,lines[i])

return lines

def processFile():

paths=[‘E:\tt.txt‘]
for path in paths:
lines=readfile(path)
processContents(lines)
writefile(path,lines)

processFile()





























以上是关于读写文件的主要内容,如果未能解决你的问题,请参考以下文章

数据清洗文件操作--csv txt文件读写excel文件读写数据库文件读写

VB读写INI文件

Python文件读写

MFC怎么读写EXCEL文件

Python文件读写

C++ 文件的随机读写