Question: 7.9 LAB: Combine lines from different Files Edit the given program to combine each line from first file with the corresponding line in second file

7.9 LAB: Combine lines from different Files Edit the given program to combine each line from first file with the corresponding line in second file LAB ACTIVITY 7.9.1: LAB: Combine lines from different Files 0/5 Additional files provided by your instructor filel.txt and file2.txt Download main.py Load default template... 1 fh1 for i in openC'filel.txt', w).readlineO.splitC'\t' 2 fh2 [for j in openC'file2.txt', ').readline).splitt 3 for i in range(max(Len(fh1),len(fh2))): 4 print(fh1[i]+fh2[i]) Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box. Develop mode Submit mode
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
