Python - Basic Articles
In this article, we will learn how to handle HTTP methods, such as GET and POST in Flask using Python. Here, we will understand the… Read More
Downloading content from its URL is a common task that Web Scrapers or online trackers perform. These URLs or Uniform Resource Locators can contain the… Read More
In this article, we will see how can we implement a Linear Regression class on our own without using any of the sklearn or the… Read More
In this article, we will learn how to store user input in an excel sheet using Python, What is Excel? Excel is a spreadsheet in… Read More
In this article, we will learn how to rotate text in Matplotlib in Python. Out of the many parameters in matplotlib.text(), there are three main… Read More
In Python, a raw string is a special type of string that allows you to include backslashes (\) without interpreting them as escape sequences. In… Read More
In this article, we are going to learn how to invert the colors of an image using Pygame in Python programming language. Pygame is a… Read More
This article describes how to configure PostgreSQL with the Django application on your Ubuntu machine. First, let’s look at an overview of all the tools… Read More
Given a tuple, the task is to write a Python program to find the greatest number in a Tuple. Example: Input: (10,20,23,5,2,90) #tupleOutput: 90Explanation: 90… Read More
Being one of the most popular languages in the entire world, Python has created a buzz around among developers over the past few years. This… Read More
This article describes how to deploy a Python WSGI application using Gunicorn and Nginx. Before proceeding with the tutorial, it’s a good idea to first… Read More
Here we will learn how to split a dataset into Train and Test sets in Python without using sklearn. The main concept that will be… Read More
Image Classification is one of the most interesting and useful applications of Deep neural networks and Convolutional Neural Networks that enables us to automate the… Read More
Given a list of N integers, the task is to write a Python program to find the index of the maximum element in the Python… Read More
Gunicorn `Green Unicorn` is a pure Python HTTP server for WSGI applications, originally published by Benoit Chesneau on 20th February 2010. It’s a WSGI (Web… Read More
 Given a string containing numbers and alphabets, the task is to write a Python program to separate alphabets and numbers from a string using regular… Read More
The __name__ is a built-in special variable that evaluates the name of the current module. If the source file is executed as the main program,… Read More
While working with Python many times we come across the question that what exactly is the difference between a numpy array and numpy matrix, in… Read More
Every modern company that engages in online sales or maintains a specialized e-commerce website now aims to maximize its throughput in order to determine what… Read More
In this article, we will learn how to pad or add leading zeroes to the output in Python. Example: Input: 11 Output: 000011 Explanation: Added… Read More