cara memindahkan file dari satu lokasi ke lokasi lain dengan 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