python 批量删除文件扩展名
摘要:
import os file = os.listdir(os.getcwd()) for m in file: n = '.'.join(m.split('.')[0:-1]) os.rename(m,n) print('批量删除文件扩展名完毕') 变量n 的内容主要功能为:把文件名按 ‘‘.’’分 阅读全文
posted @ 2022-05-10 10:34 天若有情66 阅读(251) 评论(0) 推荐(0) 编辑