Python - Medium Articles
The OpenCV module is an open-source computer vision and machine learning software library. It is a huge open-source library for computer vision, machine learning, and… Read More
In this article, we will cover How to extract file extensions using Python. How to Get File Extension in Python? Get File Extension in Python… Read More
 In this article, we will create a table in MySQL and will create a copy of that table using Python. We will copy the entire… Read More
Histograms are visualization tools that represent the distribution of a set of continuous data. In a histogram, the data is divided into a set of… Read More
There has been a change in Python’s sorted() function, it now takes three values namely, the iterable, key, and reverse. Out of these last two… Read More
In this article, you will learn various concepts of web scraping and get comfortable with scraping various types of websites and their data. The goal… Read More
The following article contains programs to compute a polynomial equation given that the coefficients of the polynomial are stored in a List. Examples: # Evaluate… Read More
The chess module is a pure Python chess library with move generation, move validation and support for common formats. We can play chess with it.… Read More
Let us see how to predict the air quality index using Python. AQI is calculated based on chemical pollutant quantity. By using machine learning, we… Read More
In this article, we will learn how we can send a direct message to users on Instagram without any manual action. We will be using… Read More
In the Abstract Factory design pattern, every product has an abstract product interface. This approach facilitates the creation of families of related objects that is… Read More
Django is a python based web application framework that is helpful for building a variety of web applications. Django also includes an extensible Django-Admin interface,… Read More
Let us see how to extract data from Justdial using Selenium and Python. Justdial is a company that provides local search for different services in… Read More
Many a time, for real-world projects, emotion recognition is often just the start of the project. That time writing a whole code on that will… Read More
The Instaloader module is a Python package having great functionalities to scrap instagram, it’s functions can be used as command-line utility. The Instaloader key is… Read More
Seaborn is an amazing visualization library for statistical graphics plotting in Python. It provides beautiful default styles and color palettes to make statistical plots more… Read More
In Pandas to determine Period Index and Column for Data Frame, we will use the pandas.period_range() method. It is one of the general functions in… Read More
strings generator is provided by Beautiful Soup which is a web scraping framework for Python. Web scraping is the process of extracting data from the… Read More
Number data types store numeric values. They are immutable data types, which means that changing the value of a number data type results in a… Read More
Given a string, replace all the vowels with character K. Input : test_str = “Geeks for Geeks”; K=’#’Output : “G##ks f#r G##ks” Explanation : All the… Read More