Comment faire en sorte qu'un fichier python se supprime

from os import remove
from sys import argv

remove(argv[0])
Flashoutt