python from plan import Plan plan = Plan() def task_handler(): print("Task is being executed.") task = plan.add_task(task_handler) plan.execute()