I am new in django
I have already installed the module(calc) but i am still getting the error .I have been struggling with this for the last 3 days.Any help please
Application definition
INSTALLED_APPS = [
‘django.contrib.admin’,
‘django.contrib.auth’,
‘django.contrib.contenttypes’,
‘django.contrib.sessions’,
‘django.contrib.messages’,
‘django.contrib.staticfiles’,
‘calc’,
from django.urls import path
from . import views
urlpatterns =[
path(’’,views.home, name=‘home’)
]
from django.shortcuts import render
from django. http import HttpResponse
Create your views here.
def home(request):
return HttpResponse(“Hello World”)