cómo hacer que un archivo de python se elimine

from os import remove
from sys import argv

remove(argv[0])
Flashoutt