关闭计算机的Python脚本
众所周知, Python是一种流行的脚本语言,因为它具有多种功能。在本文中,我们将编写一个Python脚本来关闭计算机。
要使用Python脚本关闭计算机/PC/笔记本电脑,您必须使用os.system()
函数和代码“ shutdown /s /t 1
”。
Note: For this to work, you have to import os library
in the ide. If you don’t have it, then ‘pip install os
‘ through the Command Prompt.
Causion: Please ensure that you save and close all the program before running this code on the IDLE, as the below program will immediately shut down your computer.
下面是Python的实现——
import os
shutdown = input("Do you wish to shutdown your computer ? (yes / no): ")
if shutdown == 'no':
exit()
else:
os.system("shutdown /s /t 1")
输出:
这是Python程序,它将要求用户关闭计算机,提供是或否的选项。此外,当您键入 yes 然后按 ENTER 键时,系统将立即关闭。