命名结果

命名格式:img_4位数字
在这里插入图片描述

源代码

import scipy.io as scio
import numpy as np
import os

folder_path = r'D:\user\user\毕业设计\code_for_hashing\matlab_code\image_index\images_for_index'
num = 1

if __name__ == '__main__':
    for file in os.listdir(folder_path):
        s = '%04d' % num  # 前面补零占位
        os.rename(os.path.join(folder_path, file), os.path.join(folder_path, 'img_' + str(s) + '.jpg'))
        num += 1

参考

[1]https://blog.csdn.net/See_Star/article/details/105910503

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐