Answers for "python program to shutdown pc at a specific time"

11

how to shutdown a computer with python

import os

os.system("shutdown /s /t 1")
Posted by: Guest on July-06-2020
3

how to shutdown a windows 10 computer using python

import os


os.system("shutdown /s /t 1")
Posted by: Guest on August-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language