Explain Django’s MVT (Model-View-Template) architecture.
Django follows the MVT (Model-View-Template) architecture, which is a design pattern that separates data handling, business logic, and presentation. The Model (M) represents the database and is defined using Django’s ORM (Object-Relational Mapping), allowing developers to interact with the database using Python classes instead of