A simple To-Do List app built with Python’s Tkinter library to help manage daily tasks efficiently.
- Add Task: Enter and add a task to the list.
- Mark as Completed: Mark tasks as done with a ✔️.
- Delete Task: Remove completed or unnecessary tasks from the list.
A sample of the app’s clean interface.
- Python 3.x
- Clone the Repository:
git clone https://github.com/yourusername/todo-list-app.git cd todo-list-app
- Run the App:
python todo_list_app.py
🛠️ Code Overview • create_window(): Sets up the main window. • add_task(): Adds a new task from the input field. • delete_task(): Deletes the selected task. • mark_as_completed(): Marks a task as completed. • build_gui(): Builds the app’s interface.
🎉 Usage
- Add a Task: Enter a task and click "Add Task."
- Mark as Completed: Select a task and click "Mark as Completed."
- Delete a Task: Select a task and click "Delete Task."