Python kopiuj plik do nowej nazwy pliku


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

from shutil import copyfile
copyfile(src, dst)
tooblippe