Welcome folks today in this blog post we will be restarting the computer
or pc using os
module in python. All the full source code of the application is shown below.
Get Started
In order to get started you need to create an app.py
file and copy paste the following code
app.py
1 2 3 4 5 6 7 8 |
import os restart = input("Do you wish to restart your computer ? (yes / no): ") if restart == 'no': exit() else: os.system("shutdown /r /t 1") |
Now if you execute the above script by typing the below command as shown below
python app.py
After executing this script your computer
or pc will automatically shuts down and will be restarted