python 关机代码
时间: 2023-07-09 12:31:03 浏览: 128
Shutdown-Timer:在指定时间关闭Windows计算机
以下是 Python 中实现关机功能的代码:
```python
import os
os.system('shutdown /s /t 0')
```
这段代码使用 `os.system` 函数来调用系统命令 `shutdown` 来关闭计算机。命令参数 `/s` 表示关机,`/t 0` 表示立即关闭。注意,此代码需要以管理员身份运行才能正常工作。
阅读全文