📜  Django VS Python 的区别

📅  最后修改于: 2021-09-10 03:12:21             🧑  作者: Mango

Django是一个基于 Web 的Python程序,可让您轻松构建强大的 Web 应用程序。它为Django 管理界面、默认数据库(即SQLlite3等)的所有内容提供内置功能。

Python是一种高级的、面向对象的解释型编程语言,它具有庞大的库支持,使各种程序和算法的实现变得容易。它有一套语言和面向对象的方法,旨在帮助程序员为各种项目编写清晰、合乎逻辑的代码。

Django 和Python 的区别:

Django Python
It is a web framework. It is a programming language.
It is developed by Django Software Foundation. It is developed by Python Software Foundation.
It was released in 2005. It was released in 1991.
It is written in C language. It is also written in C language but the default implementation is called CPython
It is used for web development It is used to develop frameworks like Django, Flask etc.
It is basically an MVT(Model View Template) framework built on top of Python.  It is basically an interpreted, interactive, object-oriented, and high-level programming language which runs on the compiler level.
It is mostly used in web based application and servers. It is used to create a web application, data analysis, artificial intelligence software development, etc.