# # -*- 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()
# # -*- 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()
更多python小脚本:定时提醒喝水 相关文章请关注PHP中文网!
查看更多关于python小脚本:定时提醒喝水的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did86099