import shutil, os files = ['file1.txt', 'file2.txt', 'file3.txt'] for f in files:     shutil.move(f, 'dest_folder')

Read more of this post