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日 如何控制时钟
Posted henryzkf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3月14日 如何控制时钟相关的知识,希望对你有一定的参考价值。
以上是关于3月14日 如何控制时钟的主要内容,如果未能解决你的问题,请参考以下文章