【Python】如何将文件名批量命名为四位数or五位数

for i in range(99):
    change_i = str(i).zfill(4)
    print(change_i)
    
"""输出为:
0000
0001
0002
0003
...
0098
"""



for i in range(99):
    change_i = str(i).zfill(5)
    print(change_i)

"""输出为:
00000
00001
00002
00003
...
00098
"""

 

问题来源:

本来想使用sorted(os.listdir(parh))按文件名顺序读取文件的,但是由于命名不没有统一,所以读出来没有按照预期来

 

接下来将文件名的数字部分统一命名为四位数的

import os
path = "/data/cta/deal-with-dataset-b-v1/dicom_hessian"

for file in os.listdir(path):
    num = file.split(".")[0].split("_")[-1]
    filename_change = "dicom_hessian_" + num.zfill(4) + ".jpg"
    os.rename(os.path.join(path, file), os.path.join(path, filename_change))

 

至此问题解决~

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值