I know that to open the Python interactive shell, we simply run it on the terminal of the operating system:
python
But with Django installed, you can also open the shell using the command:
python manage.py shell
Is there any difference between the two ways of invoking the Python interpreter?