Python - Medium Articles
In this article, we will learn how to draw lines using the keyboard (arrow keys) in turtle graphics. Let’s first discuss some methods used in… Read More
A Regex (Regular Expression) is a sequence of characters used for defining a pattern. This pattern could be used for searching, replacing and other operations.… Read More
In this article, we are going to discuss how to create the Game of Craps using Python. Rules of the game: Two dices are required… Read More
The threads which are always going to run in the background that provides supports to main or non-daemon threads, those background executing threads are considered… Read More
Prerequisite: BeautifulSoup Installation  In this article, we will scrape a quote and details of the author from this site http//quotes.toscrape.com using python framework called BeautifulSoup… Read More
In this article, we will learn How to get the size of a PyGame Window.  Game programming is very rewarding nowadays and it can also… Read More
Regex or Regular Expressions are an important part of Python Programming or any other Programming Language. It is used for searching and even replacing the… Read More
There are multiple ways supported by python in which color can be added to text. This article discusses all with proper examples to help you… Read More
Introduction: Experts expect Artificial Intelligence (AI) to work towards creating a better life to live. They say as more computation power will be available in… Read More
Flattening is a technique that is used to convert multi-dimensional arrays into a 1-D array, it is generally used in Deep Learning while feeding the… Read More
TF-IDF stands for Term Frequency Inverse Document Frequency of records. It can be defined as the calculation of how relevant a word in a series… Read More
In this article, we will see how to create an auto-clicker using Python. The code will take input from the keyboard when the user clicks… Read More
Django is a Python-based web framework that allows you to quickly create efficient web applications.. When we are building any website, we will need a… Read More
Prerequisite:  installation  of  PythonWhat is Flask in Python ? Flask is a popular and lightweight Python web framework, meaning it is a third-party Python library… Read More
Given a list of elements, the task here is to write a Python program that can remove the presence of all a specific digit from… Read More
Barcode represents data in graphical representation and is machine-readable. For making Barcode Reader in Python we are using pyzbar library. Using pyzbar we can decode… Read More
Prerequisites: OpenCV OpenCV is an open source library used mainly for processing images and videos to identify shapes, objects, text etc. It is mostly used… Read More
Matplotlib is a library for creating interactive Data visualizations in Python. The functions in Matplotlib make it work like MATLAB software. The legend method in… Read More
In simple words, any object that could be looped over is iterable. For instance, a list object is iterable and so is an str object.… Read More
Prerequisites: Altair Altair is a statistical data visualization library in python which is based on Vega and Vega-Lite visualization grammars. A Stripplot is used for… Read More