Django view는 HTML 같이 http 요청(request)를 받고, 응답(response)를 반환하는 python 함수
Django에서 웹페이지는 view로 구성되어 있음
APP 폴더에 views.py가 있음
from django.shortcuts import render
# Create your views here.
from django.shortcuts import render
from django.http import HttpResponse
def <APP 이름>(request):
return HttpResponse("Hello world!")