topic description
there is a code that looks like this:
job = scheduler.add_job(myfunc, "interval", minutes=2)  
job.remove()  
Same, using an explicit job ID:  
  
scheduler.add_job(myfunc, "interval", minutes=2, id="my_job_id")  
scheduler.remove_job("my_job_id")  this is when the script runs, add a task and then remove it? 
 so after my script runs, how do I find this task to remove it? 
ask the master to give me some advice
< H2 > question supplement < / H2 >means that the script runs. now you turn off the terminal and go to bed . Then open the terminal again the next day . How do you stop this task? Or find this mission? How do I operate on this task?
