這篇文章將為大家詳細講解有關(guān)python3編寫自動關(guān)機的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)公司是一家朝氣蓬勃的網(wǎng)站建設(shè)公司。公司專注于為企業(yè)提供信息化建設(shè)解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設(shè)計,網(wǎng)站模板,微信公眾號開發(fā),軟件開發(fā),小程序開發(fā),十年建站對成都生料攪拌車等多個方面,擁有多年建站經(jīng)驗。
python中可以使用os.system()方法操作shutdown命令來設(shè)置電腦自動關(guān)機。
實現(xiàn)代碼如下:
# -*- coding: utf-8 -*- """ Created on Mon Nov 19 19:56:07 2018 @author: 10091 """ from datetime import datetime,time,date import os tmNow = datetime.now() d = date.today() #設(shè)置關(guān)閉時間為今天20:26:00 t = time(20,26,0) shtdownTime = datetime.combine(d,t) def ShutDown(): while True: tmNow = datetime.now() timedDelta = (shtdownTime - tmNow).total_seconds() if timedDelta < 60: print '還有59s關(guān)機,趕快保存一下!' os.system('shutdown -s -f -t 30') #break time.sleep(20) else: continue if __name__ == '__main__': ShutDown()
shutdown命令:
shutdown [-i | -l | -s | -r | -a] [-f] [-m \computername] [-t xx] [-c " mment"] [-d up:xx:yy]
參數(shù)介紹:
-i 顯示 GUI 界面,必須是第一個選項
-l 注銷(不能與選項 -m 一起使用)
-s 關(guān)閉此計算機
-r 關(guān)閉并重啟動此計算機
-a 放棄系統(tǒng)關(guān)機
-m \computername 遠程計算機關(guān)機/重啟動/放棄
-t xx 設(shè)置關(guān)閉的超時為 xx 秒
-c “comment” 關(guān)閉注釋(最大 127 個字符)
-f 強制運行的應(yīng)用程序關(guān)閉而沒有警告
關(guān)于python3編寫自動關(guān)機的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。