批量删除当前目录下后缀为.txt的文件
a = os.getcwd() b = os.listdir() for i in b: # 分割路径,返回路径名和文件扩展名的元组 ext = os.path.splitext(i) if ext[1] == '.txt': file = os.path.join(a, i) os.remove(file)