python代码 查找并替换txt文件中的数字
时间: 2023-02-23 19:36:24 浏览: 96
txt文件中的查找与替换
可以使用以下Python代码来查找并替换txt文件中的数字:with open('your_file.txt', 'r') as f:
text = f.read()
text = re.sub(r"\d+", 'x', text)with open('your_file.txt', 'w') as f:
f.write(text)
阅读全文