Home »
Python »
Django MCQs
Which is the correct command to start the Django development server on your system?
8. Which is the correct command to start the Django development server on your system?
- py manage.py localhost
- py manage.py runatserver
- py manage.py createserver
- py manage.py runserver
Answer: D) py manage.py runserver
Explanation:
The correct command to start the Django development server on your system is:
py manage.py runserver