Python Programming - Reading and Writing Files - Discussion

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

Post your comments here:

Your comments will be displayed after verification.