# # -*- coding: utf-8 -*- import subprocess import time,os def createFile(filename): if os.path.exists(filename) == False: open(filename, "a").close() if os.path.getsize(filename): pass else: f = open(filename, "a") f.write("多喝水!!") f.close() def getThisHours(): timeInfo = time.localtime() return timeInfo[3] def printTips(filename): createFile(filename); sub2 = subprocess.Popen(['notepad', filename]); lastHours = getThisHours() try: fileName = "Tips.txt" while True: nowHours = getThisHours() if(nowHours > lastHours): lastHours = nowHours printTips(fileName) time.sleep(660);#11分鐘循環一次 except Exception as e: f = open("error.log", "a") f.write(str(e) + "\n") f.close()
定時提醒喝水,不用費勁的把腳本添加到計劃任務了(後綴保存爲.pyw就不會出現控制檯窗口了)code