倒计时闹钟
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了倒计时闹钟相关的知识,希望对你有一定的参考价值。
import time,winsound
sfile=‘tada.wav‘
while 1:
count=0
a=int(input(‘time by Min:‘))
b=a*60
while (count<b):
ncount=b-count
print (ncount)
time.sleep(5)
count+=5
print (‘done‘)
for i in range(3):
winsound.PlaySound(‘C:\Windows\Media\\{}‘.format(sfile), winsound.SND_FILENAME)
以上是关于倒计时闹钟的主要内容,如果未能解决你的问题,请参考以下文章