I made my first ever CLI program with argparse. Its a to-do list CLI.
python main.py task [task_name] will add task.
python main.py -c [task_id] will mark the task as complete.
python main.py -d [task_id] will delete the task.
python main.py -l will list all the tasks.
python main.py -v will tell you the version of the program.