1. #!/usr/bin/python
    2. # -*- coding:utf-8 -*-
    3. import os
    4. import random
    5. def reanme():
    6. img_path = os.getcwd() + '/img'
    7. img_list = os.listdir(img_path)
    8. for img in img_list:
    9. if img.endswith('.jpg'):
    10. src = os.path.join(os.path.abspath(img_path), img) # 原先的图片名字
    11. # 根据自己的需要重新命名,可以把 + img改成你想要的名字
    12. re_img = img.split('.')[0][1:3] + "." + img.split('.')[1]
    13. dst = os.path.join(os.path.abspath(img_path),
    14. f'_{str(random.random()).replace(".", "")[0:8]}_{re_img}')
    15. os.rename(src, dst) # 重命名,覆盖原先的名字
    16. reanme()