i'm writeing a program in python thats used for sorting files but i have run into the issue that i need to run though 2 lists for a command i have a list of files and a list of file destinations and i need to combine the 2 lists but i couldn't find any solutions on the internet but it just move's one file and delets the other
my code i have tried
for x in org_path:
for y in dest_path:
try:
shutil.move(x, y)
except:
print("error")```