import os
import shutil
source_image_path = ' \\'
dest_image_path = ' \\'
image_num = 1
for image in os.listdir(source_image_path):
sin_image_path = source_image_path+image
new_image_name = '2020_'+str(image_num)
new_image_path = dest_image_path+new_image_name+'.jpg'
shutil.copy(sin_image_path, new_image_path)
image_num += 1