python-定時關機程式
阿新 • • 發佈:2019-01-07
import os,time,msvcrt def shutdown(): cancell() print(" ") print("") print("") print(" ***********************************************") print(" 如果有系統提示,請忽略=_=") print(" 每次重新設定時間都會自動地取消自動關係 ") print(" 輸入格式為 22:40:00 一定要用英文輸入法輸入 ")
#獲取當前年月日 now = time.strftime("%Y-%m-%d",time.localtime(time.time()))
#輸入的時間加上年月日,這樣只用輸入時分秒即可 input_time =now+" "+ str(input("請輸入關機時間:")) print(" 輸入回車鍵返回選擇選單")
#轉化時間戳 time1 = time.strptime(input_time,"%Y-%m-%d %H:%M:%S") time2 = int(time.mktime(time1)) now = int(time.time()) #隔天關機的功能 if time2<now: time2=time2+86400
#計算時間 d=time2-now os.system('shutdown -s -t %d' %d) def cancell():#取消自動關機 os.system('shutdown -a') print("") print("") print(" ") print(" 輸入回車鍵返回選擇選單") def main(): while True: os.system("cls") print("") print("") print(" 該程式只支援24小時內的自動關機 ") print("") print(" ***********************") print(" * 1、我要設定關機時間*") print(" * 2、我要取消自動關機*") print(" ***********************") print(" power by 你說你媽呢") print(" 本人菜雞,多多包容 ")
#從鍵盤上獲取輸入 ch=msvcrt.getch() str1=bytes.decode(ch) os.system("cls") if str1=='1': shutdown() if str1=='2': cancell() print("") print("") print("") print("") print("") print("") print("") print("") print("") print("") print("") os.system("pause") main()