Copying contents of one file to a different file

suggest change
with open(input_file, 'r') as in_file, open(output_file, 'w') as out_file:
    for line in in_file:
        out_file.write(line)

Using the shutil module:

import shutil
shutil.copyfile(src, dst)

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents