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 !!')
输出:
需要删除的文件:
程序的示例运行
当我们输入要删除的文件名时:
删除:
工作: