python将文件删除 import ospath = 'F:/a.txt' # 文件路径if os.path.exists(path): # 如果文件存在 # 删除文件,可使用以下两种方法。 os.remove(path) #os.unlink(path)else: print('no such file:%s'%my_file) # 则返回文件不存在... pandas数据分析 2023-12-01 42 点赞 0 评论 63 浏览