用python修改文件内容修改txt内容的3种方法
生活随笔
收集整理的這篇文章主要介紹了
用python修改文件内容修改txt内容的3种方法
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
用python修改文件內(nèi)容修改txt內(nèi)容的3種方法
方法一、修改原文件方式
def updateFile(file,old_str,new_str):"""替換文件中的字符串:param file:文件名:param old_str:就字符串:param new_str:新字符串:return:"""file_data = ""with open(file, "r", encoding="utf-8") as f:for line in f:if old_str in line:line = line.replace(old_str,new_str)file_data += linewith open(file,"w",encoding="utf-8") as f:f.write(file_data)updateFile(r"D:\zdz\myfile.txt", "zdz", "daziran")#將"D:\zdz\"路徑的myfile.txt文件把所有的zdz改為daziran方法二、python字符串替換的方法,修改文件內(nèi)容,把原文件內(nèi)容和要修改的內(nèi)容寫到新文件中進行存儲的方式
''' 遇到問題沒人解答?小編創(chuàng)建了一個Python學習交流QQ群:778463939 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' import os def updateFile(file,old_str,new_str):"""將替換的字符串寫到一個新的文件中,然后將原文件刪除,新文件改為原來文件的名字:param file: 文件路徑:param old_str: 需要替換的字符串:param new_str: 替換的字符串:return: None"""with open(file, "r", encoding="utf-8") as f1,open("%s.bak" % file, "w", encoding="utf-8") as f2:for line in f1:if old_str in line:line = line.replace(old_str, new_str)f2.write(line)os.remove(file)os.rename("%s.bak" % file, file)updateFile(r"D:\zdz\myfile.txt", "zdz", "daziran")#將"D:\zdz\"路徑的myfile.txt文件把所有的zdz改為daziran方法三、python 使用正則表達式 替換文件內(nèi)容 re.sub 方法替換
import re,os def updateFile(file,old_str,new_str):with open(file, "r", encoding="utf-8") as f1,open("%s.bak" % file, "w", encoding="utf-8") as f2:for line in f1:f2.write(re.sub(old_str,new_str,line))os.remove(file)os.rename("%s.bak" % file, file)updateFile(r"D:\zdz\myfile.txt", "zdz", "daziran")#將"D:\zdz\"路徑的myfile.txt文件把所有的zdz改為daziran總結
以上是生活随笔為你收集整理的用python修改文件内容修改txt内容的3种方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python操作git
- 下一篇: Python 格式化输出和while循环