1.

Explain how to delete a file in Python?

Answer»

Use COMMAND os.remove(file_name)

IMPORT osos.remove("ChangedFile.csv")PRINT("File REMOVED!")


Discussion

No Comment Found