python批量给文件命名为001,002,...【亲测有效】
生活随笔
收集整理的這篇文章主要介紹了
python批量给文件命名为001,002,...【亲测有效】
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
文章目錄
- 命名結果
- 源代碼
- 參考
命名結果
命名格式:img_4位數(shù)字
源代碼
import scipy.io as scio import numpy as np import osfolder_path = r'D:\user\user\畢業(yè)設計\code_for_hashing\matlab_code\image_index\images_for_index' num = 1if __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
總結
以上是生活随笔為你收集整理的python批量给文件命名为001,002,...【亲测有效】的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: matlab批量对图片进行添加椒盐噪声并
- 下一篇: 《剑指offer》第1~11题:刷题we