| 5 | | Multiple Possible Matches |
| 6 | | Input: python manage.py makemgrations |
| 7 | | output:Unknown command: 'makemgrations'. Did you mean 'makemigrations' or 'migrate'? |
| | 8 | 2. **Input**: `python manage.py makemgrations` |
| | 9 | **Expected Output**: |
| | 10 | ``` |
| | 11 | Unknown command: 'makemgrations'. Did you mean 'makemigrations' or 'migrate'? |
| | 12 | ``` |
| | 13 | |
| | 14 | 3. **Input**: `python manage.py foo` |
| | 15 | **Expected Output**: |
| | 16 | ``` |
| | 17 | Unknown command: 'foo'. No similar commands found. |
| | 18 | ``` |
| | 19 | |
| | 20 | 4. **Input**: `python manage.py runserver` |
| | 21 | **Expected Output**: |
| | 22 | ``` |
| | 23 | Running server as expected (no suggestion needed). |
| | 24 | ``` |