Python Copier le fichier au nouveau nom de fichier


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

from shutil import copyfile
copyfile(src, dst)
tooblippe