Hapus file dalam python menggunakan modul Pathlib

import pathlib
file=pathlib.path("test/new_file.txt")
file.unlink()
Outrageous Ostrich