Файл копирования Python в новое имя файла


shutil has many methods you can use. One of which is:

from shutil import copyfile
copyfile(src, dst)
tooblippe