Menu
×
×
Correct!
Exercise:Django views are specified in the views.py file. Specify a view called 'members' that will return 'Hello World!':
from django.shortcuts import render
from django.http import HttpResponse
@(11)(request):
return HttpResponse("Hello world!")
from django.shortcuts import render
from django.http import HttpResponse
def members(request):
return HttpResponse("Hello world!")
Not CorrectClick here to try again. Correct!Next ❯ |