Create a simple text-based task manager with the following tasks: Buy groceries
, Finish report
, and Call plumber
.
Here's a simple text-based task manager with the tasks you mentioned:
Task ID | Task Name |
---|---|
1 | Buy groceries |
2 | Finish report |
3 | Call plumber |
Add a new task: Schedule dentist appointment
.
Here's the updated task manager with the new task added:
Task ID | Task Name |
---|---|
1 | Buy groceries |
2 | Finish report |
3 | Call plumber |
4 | Schedule dentist appointment |
Mark the task Buy groceries
as completed.
Here's the updated task manager with the task "Buy groceries" marked as completed:
Task ID | Task Name | Status |
---|---|---|
1 | Buy groceries | Completed |
2 | Finish report | Pending |
3 | Call plumber | Pending |
4 | Schedule dentist appointment | Pending |
Update the task Finish report
with a due date of April 10th
.
Here's the updated task manager with the due date added for the task "Finish report":
Task ID | Task Name | Status | Due Date |
---|---|---|---|
1 | Buy groceries | Completed | |
2 | Finish report | Pending | April 10th |
3 | Call plumber | Pending | |
4 | Schedule dentist appointment | Pending |
Prioritize the task Call plumber
as High priority
.
Here's the updated task manager with the task "Call plumber" marked as high priority:
Task ID | Task Name | Status | Due Date | Priority |
---|---|---|---|---|
1 | Buy groceries | Completed | ||
2 | Finish report | Pending | April 10th | |
3 | Call plumber | Pending | High | |
4 | Schedule dentist appointment | Pending |
Remove the completed task Buy groceries
from the task list.
Here's the updated task manager with the completed task "Buy groceries" removed:
Task ID | Task Name | Status | Due Date | Priority |
---|---|---|---|---|
1 | Finish report | Pending | April 10th | |
2 | Call plumber | Pending | High | |
3 | Schedule dentist appointment | Pending |
Display the updated task list with their status, due dates, and priorities.
Here's the updated task list with their status, due dates, and priorities:
Task ID | Task Name | Status | Due Date | Priority |
---|---|---|---|---|
1 | Finish report | Pending | April 10th | |
2 | Call plumber | Pending | High | |
3 | Schedule dentist appointment | Pending |