how to copy everything a file in another file using python code example
Example 1: copy file in python3
import shutil
original = r'original path where the file is currently stored\file name.file extension'
target = r'target path where the file will be copied\file name.file extension'
shutil.copyfile(original, target)
Example 2: copyfile pyhon
from shutil import copyfile
copyfile(src, dst)