python 定时关机
时间: 2023-11-09 07:03:37 浏览: 320
python做的定时关机软件
可以使用 Python 的 os 模块中的 system 函数来执行系统命令,从而实现定时关机的功能。具体实现方法如下:
```python
import os
# 设置定时关机时间,单位为秒
shutdown_time = 60 * 60 # 1小时后关机
# 执行系统命令,实现定时关机
os.system(f'shutdown -s -t {shutdown_time}')
```
这段代码会在运行后等待指定的时间后自动关机。其中,`shutdown -s` 表示执行关机操作,`-t` 参数后面跟的是等待时间,单位为秒。
阅读全文