# Programa que dejará de aplicaciones comunes de Windows y apagar la computadora
# Realmente perezoso. :-)
Imprimir ("parar aplicaciones ahora")
# importar el módulo de sistema operativo
# permite al usuario ejecutar comandos del sistema operativo desde Python
os de importación
# Ejecutar el comando "taskkill" para detener las aplicaciones en Windows
os.System ("taskkill /f /im notepad.exe")
os.System ("taskkill /f /im winword.exe")
os.System ("taskkill /f /im excel.exe")
os.System ("taskkill /f /im powerpnt.exe")
os.System ("taskkill /f /im outlook.exe")
os.System ("taskkill /f /im chrome.exe")
os.System ("taskkill /f /im calc.exe")
os.System ("taskkill /f /im iexplore.exe")
os.System ("taskkill /f /im powershell.exe")
os.System ("taskkill /f /im wordpad.exe")
# use la plantilla de abajo para agregar más aplicaciones
# os.system ("taskkill /f /im [nombre del archivo ejecutable] .exe")
parada # el ordenador en 1 segundo
os.System ("shutdown /s /t 1")