如何在给定的时间和次数使用sched run?

时间:2017-03-28 16:46:56

标签: python scheduler execute

如何在用户指定的时间test()i使用sched来运行函数runtime?我不确定什么参数应该放在sched.scheduler(time.time, time.sleep)中。 这是一个例子:

from datetime import datetime

i = str(raw_input('What date to start function: '))
runtime = raw_input('How many times to run: ')
try:
    dt_start = datetime.strptime(i, '%Y-%m-%d-%H-%M-%S')
except ValueError:
    print "Incorrect format"


def test():
    print "Hello World"

0 个答案:

没有答案