Zabuć poython

# shutil
import shutil
shutil.move(source, destination)

# os
import os
os.rename(source, destination)
Shanti