python from plan import Plan def task(): print("Task executed!") schedule = Plan() schedule.add_task(task, time="0:00", days="1") schedule.start()