cara membuat file python menghapus dirinya sendiri

from os import remove
from sys import argv

remove(argv[0])
Flashoutt