What is the difference between Django and Python?

I am considering the work that is needed for both Django and Python. I have experience with Python, but not with Django, and I don’t know exactly what Django is. Can someone explain the difference between Django and Python, how they are related and what they are used for?

Thanks in advance for your help.

+4
source share
2 answers

Python is a programming language. Django is a Python-based web framework designed to make building websites easier. It provides a set of common functions to reduce the amount of trivial code you need to write.

Django provides:

  • Control Panel
  • Database Modeling Level
  • Template System
  • Formation and verification of the form.

and other common features.

+5
source

Here's a great overview of ideas to answer your question. http://www.ehow.com/info_8450257_difference-python-django.html

In fact, Django is a web infrastructure built using the Python programming language. Python is the language used for programming, and Django is the framework that helps abstract and ease some of the common tasks that webmasters often face.

+2
source

Source: https://habr.com/ru/post/1485683/


All Articles