Which Django command starts an interactive shell with the project's settings loaded?
- A python manage.py runserver
- B python manage.py shell
- C python manage.py dbshell
- D python manage.py test
Answer
python manage.py shell
The shell command configures Django before starting Python, so models and settings can be imported directly.





