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

2024年11月15日 18:42
有1个网友回答
网友(1):

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