Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 15)
15.
How can you copy the contents of one file, "source.txt", to another file, "destination.txt"?
copy_file("source.txt", "destination.txt")
with open("destination.txt", "w") as dest:
    dest.write(open("source.txt").read())
file_copy("source.txt", "destination.txt")
copy_contents("source.txt", "destination.txt")
Answer: Option
Explanation:
Opening both files and using write() to copy the contents from source to destination.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.