在python中使程序睡眠X秒



我正在制作一个闹钟程序,该程序必须睡眠(不发出噪音)到早上6:00。我遇到的问题是,我无法让程序等待X秒

伪代码:X=上午6点-当前时间睡眠时间(X)

这是我到目前为止的代码:

#Imports
import datetime
import time
import pygame
WORDS = ["Wake", "Me", "Tommorow"]
#Make J.A.R.V.I.S. Listen
mic.activeListen():
#Determine time and difference of time
x = datetime.datetime.now()
x = x.total_seconds
print(x)
x = datetime.timedelta()
x = float(x) #time.sleep() Requires a float value.
time.sleep(x) #Sleeps until 6:00 AM
pygame.mixer.init()
pygame.mixer.music.load("alarm.mp3")
pygame.mixer.music.play()
while pygame.mixer.music.get_busy() == True:

为了创建一个代表上午6:00的datetime对象,您需要指定日期。例如,如果您想要今天早上6点(假设它发生在未来):

from datetime import datetime, date, time, timedelta
import time
d = date.today()
target_dt = datetime.combine(d, time(6,0))
td = target_dt - datetime.now()
time.sleep(td.total_seconds())

如果你想明天早上6点,做:

d = date.today() + timedelta(days=1)
# the rest is the same...

您不应该相信time.sleep()会在预期时间停止等待,因为任何捕获的信号都会终止它(请参阅Python time.sleen()中上限的答案?)。

相关内容

  • 没有找到相关文章

最新更新