如何用python 修改txt文件

日期:2017-03-20 11:11:32 人气:1

如何用python 修改txt文件

def modifyip(tfile,sstr,rstr): try: lines=open(tfile,'r').readlines() flen=len(lines)-1 for i in range(flen): if sstr in lines[i]: lines[i]=lines[i].replace(sstr,rstr) open(tfile,'w').writelines(lines) except Exception,e: print
    A+
热门评论