import os
# 路径
path = "picturedataset/LowHigh"
#
files = os.listdir(path)
# print("文件列表:", files)
# 文件索引
index = 0
# 遍历文件
for filename in files:
# 设置旧文件名
old_name = str(path + os.sep + files[index])
# print("old_name", old_name)
# 设置新文件名
new_name = old_name.replace('-', '+')
# 重命名
os.rename(old_name, new_name)
# 索引增加
index = index + 1
例如:1-5.jpg改为1+5.jpg