Python CMD para remover o arquivo

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