Python程序删除文件
曾经想用几行代码从Python程序中删除一个文件吗?好吧,你来对地方了。今天我们将学习如何使用Python删除文件。
注意:我们将导入 os 库并使用 os.remove()函数删除所需的文件。如果您没有 os 库,则打开命令提示符并编写pip install 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 !!')
输出:
想要删除的文件:
程序的示例运行
当我们输入要删除的文件名时:
删除:
工作: