Model
: 데이터베이스와 통신을 하게 해줌
View
: 계산하는 것들의 대부분을 담당함
Template
: front end 와 밀접함
from django.urls import path
from accountapp.views import hello_world
app_name = "accountapp"
urlpatterns = [
path('hello_world/', hello_world, name='hello_world')
]