Supprimer le fichier en python à l'aide du module Pathlib

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