Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 55)
55.
How can you copy the contents of a file named "source.txt" to another file named "destination.txt"?
shutil.move("source.txt", "destination.txt")
copy_file("source.txt", "destination.txt")
with open("destination.txt", "w") as dest:
    dest.write(open("source.txt").read())
rename_file("source.txt", "destination.txt")
Answer: Option
Explanation:
Using a context manager to open both files and writing the content of "source.txt" to "destination.txt".
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.