一个包含100行的格式文件,前1到80行是通用的,而80-100行必须是不同的部分(例如每5行具有不同的信息集)。从这种格式文件需要创建四个具有相同行(1-80)和各自不同的部分信息的文件。我需要使用python来完成此任务。 下面的附件脚本正在为新文件创建相同的行,但是我需要基于行进行限制,而searchquery是搜索匹配字符串或行以将相应部分复制到新文件的关键,并且此功能仍无法正常工作/找到所需的详细信息。
请让我知道如何进行此操作。预先感谢。
format_file = 'file.format'
searchquery = 'IPv4_Active1'
read_file = open(format_file,'r')
mvsip4222=read_file.read()
print(read_file.read()) # printing format file
wvs4_222 = 'file_ip4_active1.evn' # New files name
new_file = open(wvs4_222,'w')
new_file.write(mvsip4222) # writing format files lines to new file
read_file.close()
new_file.close()