Posts from Python

Detecting the handwritten digit in Python

By Nikita Pande

In this tutorial, you will create a neural network model that can detect the handwritten digit from an image in Python using sklearn. A neural network consists of three types of la.... Read More

Check If A Number Is A Happy Number

By Svarnim Agarwal

In this tutorial, we will be looking at a python program to check if a number is a happy number or not. We will be using the following Python concepts to solve this problem: Python.... Read More

URL Building in flask explained and how URL Building takes place in flask

By Mridul Goyal

In this tutorial, we are going to learn about the functionalities and features of a URL. We are also going to learn about URL building in Flask and how does the URL building take p.... Read More

Python program to subtract two complex numbers

By Shakshi Parekh

Here in this context, we are going to learn about the Python program to subtract two complex numbers. A complex number is created from two real numbers. Python complex number can b.... Read More

While loop in Python

By Chirag Bhardwaj

In this tutorial, we will learn while loop in Python with simple example programs. If you have some lines of code and you want to run those lines again and again then we make use o.... Read More

Templates in Flask explained and the importance of using them

By Mridul Goyal

In this tutorial, we are going to learn about the templates in flask. We are also going to learn how to implement the templates in flask and also the use of the Jinja2 template eng.... Read More

OpenCV: A library for image processing in Python

By Paaritosh Sujit

In this article, you will learn about the function library ‘OpenCV’ in a general way, along with a slight inclination to the programming language Python. OpenCV (Open S.... Read More

How to Calculate the Execution Time of a Small Python Program

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be going to learn how we can calculate the execution time of a Python program. For this, we’ll be using a very handy and useful .... Read More

Related Posts