일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- matplotlib
- Else
- polynomial regression
- matplotlib.pyplot
- variables
- AS
- iterates
- train/test
- MySQL
- PROJECT
- line width
- Default X points
- data distribution
- error
- multiple lines
- start exercise
- continue
- Text Analytics
- machine learning
- line color
- self parameter
- For loops
- PANDAS
- Python
- Github
- pie charts
- Text mining
- __init__
- SQL
- break
- Today
- Total
목록Django (3)
Data Science Explorer

Django, the program that we are learning is to create a server. A program that creates a web server and provides a framework and makes it easier to implement the server with it is called a web framework. It is all about receiving a request from the client and reponding to the client. The following description is to explain the flow of Django. Please refer to the image for your better understandi..

Django Project Set-up Create a new Django project This command will create a new Django project with the given project name. django-admin startproject Create an app This command will create a new Django application within the project directory. django-admin startapp Development and Testing Run the development server This command will start the development server for your Django project. python m..

Django, a high-level Python web framework, has emerged as a leading choice for developers worldwide. In this article, we will explore what Django is, its history, key features, and how it empowers developers to create dynamic and feature-rich web applications. Key Features of Django: 1. Model-View-Template (MVT) Architecture: Django follows the Model-View-Template (MVT) architecture, which is si..