WAP to combine eachline from first line with eachline of second line. code example
Example: Python program to combine each line from first file with the corresponding line in second file
with open('file1.txt') as f1,open('man.txt') as f2:
for l1,l2 in zip(f1,f2):
# print(l1+l2)
l1=l1.strip()
l2=l2.strip()
print(l1+l2)