shutilモジュールのcopyfileを使うことでファイルをコピーすることができます。
次のコードは1.txtを2.txtにコピーします。
import shutil shutil.copyfile("1.txt", "2.txt")