Write a simplest Python program to merge the following two files File a: File b Merged file: Show transcribed image text Write a simplest Python program to merge the following two files File a: File b Merged file:
Solution
# names of the files
f1 = “a.txt”
f2 = “b.txt”
# opening and reading lines in the
OR
OR