Comment déplacer le fichier d'un endroit à un autre avec Python

import shutil
def mover_of_files(location_from_to_move, location_to_move_file):
    shutil.move(location_from_to_move, location_to_move_file)
mover_of_files("location of your file which you want to move","to the location you want to move to" )
Programmer of empires