Here is class 12 computer science [Type B] Unit 15 solutions for Sumita Arora back exercise assignment. Below includes both textual and video solutions wherever required. View all the answers in assignment for chapter 15 and for all chapters here.Sumita Arora Solutions for all lessons here.
$ from django.shortcuts import render $ def about_view(request): $ print(request.GET) $ return render(request, "about.html")
$ from django.shortcuts import render $ def index_view(request): $ print(request.POST) $ return render(request, "index.html")
(a) View function def teamwork(request): return render(request, 'team.html') (b) url conf from work.views import teamwork urlpatterns = [ path('about/team', teamwork), path('admin/', admin.site.urls)]
(a) path(‘about/’,views.abt) url is localhost:8000/about/ and view function is abt (b) path (‘news/’,views.modern) url is localhost:8000/news/ and view function is modern
Clear Doubts with Computer TutorIn case you’re facing problems in understanding concepts, writing programs, solving questions, want to learn fun facts | tips | tricks or absolutely anything around computer science, feel free to join CTs learner-teacher community: students.computertutor.in
You cannot copy content of this page