import os file = os.listdir(os.getcwd()) for m in file: n = '.'.join(m.split('.')[0:-1]) os.rename(m,n) print('批量删除文件扩展名完毕')
变量n 的内容主要功能为:把文件名按 ‘‘.’’分割成若干部分。然后把最后一部分删除掉。再把前几部分通过join函数再合成一部分。
posted on 2022-05-10 10:34 天若有情66 阅读(249) 评论(0) 编辑 收藏 举报