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.
HTTP Response Object
Create response
Report a typo
Write a program in Python 3
from django.urls import path
from django.http import HttpResponse
# your code here
urlpatterns = [
]
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.