首頁 > 問答 > 主體
Python如何讀檔內容修改後寫回原始檔
讀
修改
寫
漂亮男人2017-06-28 09:27:30
參考文章:Python檔案操作相關問題
修改文件內容並寫回原文件
with open(filename) as f: file_str = f.read() # do stuff with file_str with open(filename, 'w') as f: f.write(file_str)