Home »
Python »
Django MCQs
Which is the correct statement to import models in the Django project?
14. Which is the correct statement to import models in the Django project?
- from django import models
- from django.models import models
- from django.db import models
- None of the above
Answer: C) from django.db import models
Explanation:
The correct statement to import models in the Django project is:
from django.db import models