Usuń plik w Python za pomocą modułu Pathlib

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