w3resource

Python File I/O: Copy the contents of a file to another file

Python File I/O: Exercise-13 with Solution

Write a Python program to copy the contents of a file to another file .

Sample Solution:-

Python Code:

from shutil import copyfile
copyfile('test.py', 'abc.py')

Sample Output:

abc.py

Flowchart:

Flowchart: File I/O: Copy the contents of a  file to another file.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to write a list content to a file.
Next: Write a Python program to combine each line from first file with the corresponding line in second file.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.