import shutil source_path = '/path/to/source/file.txt' dest_path = '/path/to/destination/' shutil.move(source_path, dest_path)