Python CMD untuk menghapus file

import os
os.remove("ChangedFile.csv")
print("File Removed!")
Handsome Hawk