Niharika Aitam has Published 158 Articles

Django CRUD (Create, Retrieve, Update, Delete) Function Based Views

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 13:02:39

40 Views

CRUD is abbreviated as Create, Retrieve, Update and Delete Functions. In Django, we can perform all these CRUD operations on the data we created into the database. Now let’s create the views.py function based on the operation that we want to perform. Create Operation with Django Create is used to ... Read More

Django form field custom widgets

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 12:34:32

25 Views

A widget is the representation of the Html input element using Django. The widget is used to handle the rendering of the HTML page and data extracting from the POST/GET dictionary. Every time whenever we specify the field on a form, Django uses the default widget to display the data ... Read More

Django Form submission without Page Reload

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 12:27:03

43 Views

In Django, we can submit the form without reloading the page using the Jquery and Ajax (Asynchronous JavaScript and XML) requests. Let’s see an example to work with the Ajax to submit the Django form without reloading the page. Create a new Django project First create a new project in ... Read More

Print objects of a class in Python

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 12:22:16

73 Views

An object is the part of the Object Oriented Language (OOPs), which is an instance of the class. The class is the blueprint or template that specifies the methods and properties of that given class. When we create an object of a class, it contains all the set of instance ... Read More

Program to print window pattern

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 12:10:20

81 Views

Python is one of the most popular and efficient programming language which helps the developers to write and execute the code very easily and faster. It provides several methods, packages, modules and libraries to develop the code within no time and with less complexity. A window can be a ... Read More

Program to Print K using Alphabets

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 11:55:14

131 Views

Python is used to print different patterns easily within less time as per the user requirement. In the same way, we can print the letter K using the alphabets available in the English language. Example In this example we will create the letter K by using the K alphabet. The ... Read More

Program to check if a string contains any special character

Niharika Aitam

Niharika Aitam

Updated on 06-Nov-2023 11:22:22

222 Views

Python helps us to develop code as per the developer requirement and application. It provides multiple modules, packages, functions and classes which makes the code more efficient. Using python language, we can check if a string contains any special character or not. There are several ways to check the string ... Read More

Divide one Hermite series by another in Python using NumPy

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:33:03

21 Views

The Hermite series is one of the mathematical techniques, which is used to represent the infinite series of Hermite polynomials. The Hermite polynomials referred as the sequence of orthogonal polynomials which are the solutions of the Hermite differential equation. Dividing one hermite series by another The Hermite series is ... Read More

Differentiate a Hermite_e series and set the derivatives in Python

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:30:35

68 Views

Hermite_e series is also known as probabilist's Hermite polynomial or the physicist's Hermite polynomial the available in mathematics which is used to sum of the weighted hermites polynomials. In some particular cases of the quantum mechanics, the Hermite_e series the weight function is given as e^(−x^2). The following is the ... Read More

Digital Band Reject Butterworth Filter in Python

Niharika Aitam

Niharika Aitam

Updated on 02-Nov-2023 12:11:23

23 Views

A Band Reject filter is the filter which rejects or blocks all the frequencies within the range and passes the frequencies outside the range. The Butterworth is the type of a filter designed to filter the frequencies as flat as possible in the pass band. The following are the main ... Read More

1 2 3 4 5 ... 16 Next
Advertisements