Create response

Report a typo

Complete the welcome_view() function, so it returns an HttpResponse object containing a welcoming message. Add a path to the urlpatterns so that requests with the link welcome/ are processed by the welcome_view function.

Write a program in Python 3
from django.urls import path
from django.http import HttpResponse
# your code here

urlpatterns = [

]
___

Create a free account to access the full topic