0 python posted copy one file to another in Python How to copy one file to another file in Python . Edit Question
0 Mitul Dabhi answered Nov 30 '-1 00:00 very simple pls check below code for copy one file to another file . f = open("myfont.txt", "rb"); d = open("data.txt", "wb"); d.write(f.read()); f.close() d.close() Edit Answer