注销计算机的Python脚本
众所周知, Python是一种流行的脚本语言,因为它具有多种功能。在本文中,我们将编写一个Python脚本来注销计算机。让我们从如何使用Python注销系统开始。要仅使用Python脚本注销您的计算机/PC/笔记本电脑,您必须使用 os.system()函数和代码“shutdown -l”。 shutdown -l命令是用于注销的 windows shell 命令。
让我们从如何使用Python注销系统开始。
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 log out your computer.
下面是Python的实现——
import os
logout = input("Do you wish to log out your computer ? (yes / no): ")
if logout == 'no':
exit()
else:
os.system("shutdown -l")
输出:
这是一个Python程序,它将要求用户注销计算机,提供是或否的选项。此外,当您键入 yes 然后按 ENTER 键时,系统将立即注销。