python的schedule调度问题
代码如下,at()不能实现传参,请教有什么办法吗?def Job():
print("this is test!")
a='09'
b='58'
#tt='"'+a+':'+b+'"'
#print (a,b,tt)
#schedule.every(tt).minutes.do(Job) # every(tt)就可以实现传参。
schedule.every().day.at('"'+a+':'+b+'"').do(Job) #at()不能实现传递参数。
# schedule.every().day.at("09:57").do(Job) #标准格式。
#
while True:
schedule.run_pending()