我创建了一个具有特定条件的计时器,当它用完时,它应该发布一个音频。
我的输入:
import time
import playsound
run = raw_input("Start? > ")
mins = 0
# Only run if the user types in "start"
if run == "start":
# Loop until we reach 2 minutes running
while mins != 2:
print ">>>>>>>>>>>>>>>>>>>>>", mins
if mins ==2:
playsound.playsound('C:\Audio.mp3', True)
time.sleep(60)
# Increment the minute total
mins += 1
但遗憾的是它没有发布任何东西
答案 0 :(得分:0)
使用脚本中已经使用的time.sleep()
函数在两分钟后播放声音会不会更容易?
如下所示:
import time
import playsound
time.sleep(120)
playsound.playsound("C:\Audio.mp3", True)