Write a function in python to copy content of one text file to another text file.
Answers
Answered by
2
Python Program to Copy the Contents of One File into Another :-
1. Open one file called test. txt in read mode.
2. Open another file out. txt in write mode.
3. Read each line from the input file and write it into the output file.
4. Exit.
Answered by
0
Answer:
Similar questions