码迷,mamicode.com
首页 > 其他好文 > 详细

3月14日 【如何控制时钟】

时间:2018-03-15 14:19:11      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:start   gpo   时钟   win   list   ted   lin   如何   time()   

import time
import sys
#create by henryzkf 2018315 succ

soundFile = ‘sound.wav‘
not_executed = 1

def soundStart():
if sys.platform[:5] == ‘linux‘:
import os
os.popen2(‘aplay -q‘ + soundFile)
else:
import winsound
winsound.PlaySound(soundFile, winsound.SND_FILENAME)

while(not_executed):
dt = list(time.localtime())
hour = dt[3]
minute = dt[4]
if hour == 17 and minute == 38: # 下午5点33分的时候开始提示
soundStart()
not_executed = 0

3月14日 【如何控制时钟】

标签:start   gpo   时钟   win   list   ted   lin   如何   time()   

原文地址:https://www.cnblogs.com/henryzkf/p/8573098.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!