读写文件
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()
以上是关于读写文件的主要内容,如果未能解决你的问题,请参考以下文章