theadeyemiolayinka / python-scripts

An Open Source repository for python developers to share their codes.
MIT License
27 stars 39 forks source link

to_do_list_using python sripts #184

Closed chiku011 closed 11 months ago

chiku011 commented 11 months ago

fixed issue #180

Script Description: To-Do List Manager

Features:

Add Task: This script allows you to add tasks to your to-do list. You can input the description of the task, and it will be added to the list.

View List: You can view your current to-do list. If the list is empty, it will inform you that the list is empty. Otherwise, it will display each task in a numbered list.

Mark Task as Completed: You can mark a task as completed by providing the index of the task you want to complete. The script will remove the completed task from the list and display a confirmation message.

Quit: You can exit the script when you're done managing your to-do list.

How to Use:

When you run the script, it presents you with a menu of options: Add Task, View List, Mark Task as Completed, and Quit.

To add a task, choose option 1 and enter the description of the task when prompted.

To view your to-do list, choose option 2. It will display your tasks with corresponding numbers.

To mark a task as completed, choose option 3. First, it shows your current to-do list. Then, you can enter the number of the task you want to mark as completed.

To exit the script, choose option 4. It will end the program.

Usage Example:

You can use this script to keep track of tasks you need to complete, mark them as you finish them, and easily view the remaining tasks. Note:

This is a simple text-based to-do list manager. It does not store tasks persistently; they will be lost when you close the script. If you want to add data persistence, you can modify the script to save tasks to a file or database.

chiku011 commented 11 months ago

this time i follow the guideline given by you. i added the requirment.txt file and also maked folder with name of the problem so plz check it

theadeyemiolayinka commented 11 months ago

Project review and merged. Thank you @chiku011 Feel free to star the repo and add more projects.