Python Mini-Project: To-Do List Application
Version 1: Basic Command-Line To-Do List # Basic Command-Line To-Do List – Version 01todos = []while True: user_prompt = input(‘\nType Add, Show, Edit, Complete, Exit: ‘).strip() match user_prompt: case ‘Add’: todo = input(‘Enter a todo to add: ‘) todos.append(todo) case ‘Show’: for index, item in enumerate(todos): print(f'{index+1}:{item}’) case ‘Edit’: number = int(input(‘Enter index of todo … Read more