Showing posts with label Shutdown Computer. Show all posts
Showing posts with label Shutdown Computer. Show all posts

Shutdown Computer in Python

# Python Program - Shutdown Computer

import os;
check = input("Want to shutdown your computer ? (y/n): ");
if check == 'n':
    exit();
else:
    os.system("shutdown /s /t 1");