python中进行文本文件中的文本替换操作的语句是什么?

2024-11-15 18:42:54
推荐回答(1个)
回答1:

with open("file","r+") as f:
d = f.read()
d.replace("old", "new")
f.write(d)