Answers for "Python program to combine each line from first file with the corresponding line in second file"

0

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)
Posted by: Guest on December-02-2020

Code answers related to "Python program to combine each line from first file with the corresponding line in second file"

Python Answers by Framework

Browse Popular Code Answers by Language