Python 理解进度表时遇到的问题

Python 理解进度表时遇到的问题,python,schedule,Python,Schedule,我正试着让我的头脑回到日程上来。我已经查看并修改了代码,但无法找出原因 import schedule import time def job(): print("I\'m doing the job") schedule.every().minute.at(":17").do(job) while True: schedule.run_pending() time.sleep(1) 他给了我很多 I'm doing the

我正试着让我的头脑回到日程上来。我已经查看并修改了代码,但无法找出原因

import schedule
import time

def job():
    print("I\'m doing the job")

schedule.every().minute.at(":17").do(job)

while True:
    schedule.run_pending()
    time.sleep(1)
他给了我很多

I'm doing the job
I'm doing the job
I'm working...
I'm working...
I'm doing the job
I'm working!
I'm working...
I'm working...
I'm working...
I'm working!
I'm working!
I'm working...

我在哪里工作…
我在工作来自的消息?看来你还没有向我们展示所有的代码。嗨@JohnGordon,这是关键。这就是我的全部代码。可能还有其他问题吗?链接帖子中的代码有这样的消息。你有那个程序的副本还在后台运行吗?