Python 删除文件

Python 删除文件

曾经想要从Python程序中删除一个文件,只需要几行代码?你来对地方了。今天我们将学习如何使用Python删除文件。

注意:我们将导入os库,并使用os.remove()函数来删除所需的文件。如果没有os库,则打开命令提示符并写入pip安装os,以安装所需的os库。

下面是Python实现-

import os
print ("Enter 'quit' for exiting the program")
filename = input('Enter the name of the file, that is to be deleted : ')
if filename == 'quit':
    exit()
else:
    print ('\nStarting the removal of the file !')
    os.remove(filename)
      
    print ('\nFile, ', filename, 'The file deletion is successfully completed !!')            

输出:

需要删除的文件:

Python 删除文件

程序的示例运行

Python 删除文件

当我们输入要删除的文件名时:

Python 删除文件

删除:

Python 删除文件

工作:

Python 删除文件

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Python 示例