0
나는이 새 파일을 만듭니다 내가 (모든 라인 후 삭제해야합니다) comp_file의 4 개 첫번째 라인python 3.5에서 한 파일의 내용을 anothe 파일에 붙여 넣는 방법은 무엇입니까?
나는이 새 파일을 만듭니다 내가 (모든 라인 후 삭제해야합니다) comp_file의 4 개 첫번째 라인python 3.5에서 한 파일의 내용을 anothe 파일에 붙여 넣는 방법은 무엇입니까?
export_f= open ('compile.do', 'r')
comp_file = open ('xilinx_compile.tcl', 'r+')
with open('comp_file.temp', 'w') as temp:
temp.writelines(comp_file.readlines()[0:4])
temp.writelines(export_f)
후 export_f의 내용을 추가해야이 개 파일
export_f= open (../../sim_export/modelsim/compile.do)
comp_file = open (../../ver/sim/xilinx_compile.tcl)
이
comp_file.temp
은
comp_file
의 첫 번째 4 줄을 포함하고 모든 내용은
export_f
입니다.
comp_file
을 새 내용으로 바꾸거나 새
comp_file.temp
의 이름을 원래
comp_file
으로 바꿀 수 있습니다.
희망이 도움이됩니다.