embedded system,Arduino,Raspberry pi,ARM7,MM32,STM32,PIC and Python,Django,Datascience and web development
Monday, March 8, 2021
django day4 first app running
your app urls.py
=====================
from django.contrib import admin
from django.urls import path,include
from . import views
urlpatterns = [
path('',views.home,name="home"),
path('contact',views.contact,name="contact")
]
your app views.py
======================
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def home(request):
#1+2
#HttpResponse("
Subscribe to:
Posts (Atom)
-
How to do the programming python in windows command prompt Step 1: please go through below link website f...
-
Serial.print() Description Prints data to the serial port as human-readable ASCII text. This command can take many forms. Numbers a...