我是 python 的初学者,我被困在给我的任务中。我有一个名为 file.h 的文件,它有一个特定的信息和一个介于类似这样的东西之间的数字。
Working copy:C:/tmp
Repository root:svn:/localhost
VERSION_REV 8797
Schedule:normal
Date:13/12/2010
我需要编写一个 python 代码,以便每当我运行它时,它都应该搜索数字 8797 并将其替换为存储在我的变量中的数字,即 x=8798。我尝试如下,但没有成功。
fout = open("path to\file\file.h","r+")
for line in open("path to\file\file.h"):
line = line.replace("VERSION_REV %i","x")
fout.write(line)
fout.close()
对不起,我忘了说我使用的是windows7系统。