定时关机,功能:windows下,用户按照一定格式输入关机时间,系统到指定时间自动关闭 思路:从用户输入获取指定时间 分别以时分秒减去当前时间 最终计算得到当前时间距离指定 时间还有多少秒 作为关机命令的时间参数。
需要用到的模块: os 用于执行设定的系统命令 time 用于获取系统时间 需要用到cmd命令: shutdown -s -t xxx 其中xxx为距离自动关机所用秒数,即时间参数 shutdown -a 取消关机计划。
代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import os import time input_time = input ( '请输入关机时间,格式如:小时:分钟 :' ) if input_time = = 'off' : os.system( 'shutdown -a' ) h1 = int (input_time[ 0 : 2 ]) m1 = int (input_time[ 3 : 5 ]) print (h1, m1) mytime = time.strftime( '%H:%M:%S' ) h2 = int (mytime[ 0 : 2 ]) m2 = int (mytime[ 3 : 5 ]) if h1 > 24 : h1 = 24 m2 = 0 if m1 > 60 : m1 = 60 if h1 < h2: h1 = h1 + 24 s1 = (h1 + (m1 / 60.0 ) - h2 - (m2 / 60.0 )) * 3600 if s1 < = 0 : print ( "ERROR" ) else : print ( '距离关机还有 %d 秒' % s1) os.system( 'shutdown -s -t %d' % s1) |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/xyisv/article/details/78918719