【原创】 python 替换文件内容
07 02 2021
#-*-coding:utf-8-*- #此方法只适用小文件 file_name='config.php' withopen(file_name,'r+')asf: t=f.read() t=t.replace('//\'CDN_IMG\'=>\'/www.wwww.cn\'','\'CDN_IMG\'=>\'/www.sssdsds.cn\'') #读写偏移位置移到最开始处 f.seek(0,0) f.write(t) #设置文件结尾EOF f.truncate()