Python - Easy Articles
Given two hexadecimal numbers, write a Python program to compute their sum. Examples: Input: a = "01B", b = "378" Output: 393 Explanation: B (11… Read More
A Circle is a mathematical figure formed by joining all points lying on the same plane and are at equal distance from a given point.… Read More
The task is to write a Python Program to sort a list of tuples in increasing order by the last element in each tuple. Input:… Read More
Given a number N and power P, the task is to find the power of a number ( i.e. NP ) using recursion. Examples:  Input:… Read More
A nested list is given. The task is to print the sum of this list using recursion. A nested list is a list whose elements… Read More
Let’s see how to convert the set into tuple and tuple into the set. For performing the task we are use some methods like tuple(),… Read More
In this article, we’re going to study a simple how-to log in booking.com by selenium. Selenium is a free tool for automated trying out across… Read More
A snake game is an arcade maze game which has been developed by Gremlin Industries and published by Sega in October 1976. It is considered… Read More
Project Title – Basic Ecommerce Website using Django  Django is a powerful framework based on python. Here we will see how to create a basic… Read More
This function is used to add a text to the axes at location x, y in data coordinates. Syntax: matplotlib.pyplot.text(x, y, s, fontdict=None, **kwargs) parameters… Read More
Given a dictionary perform its reordering by right rotating dictionary keys by K. Examples: Input : test_dict = {1:6, 8:1, 9:3, 10:8, 12:6, 4:9}, K… Read More
Heatmap is defined as a graphical representation of data using colors to visualize the value of the matrix. In this, to represent more common values… Read More
Given a Dictionary, check if the summation of values is greater than the keys sum. Input : test_dict = {5:3, 1:3, 10:4, 7:3, 8:1, 9:5} … Read More
Seaborn is a Python library that is based on matplotlib and is used for data visualization. It provides a medium to present data in a… Read More
A boxplot is a powerful data visualization tool used to understand the distribution of data. It splits the data into quartiles, and summarises it based… Read More
In this article, we are going to CLI application using Python3. We are going to include the below applications in the menu: GOOGLE CHROME MS… Read More
In this article, we are going to code a simple program for book movie tickets. It will be very useful to the passionate beginners who… Read More
Metadata extraction is a necessary task while making music players or other related applications. The best python library to read music metadata of various audio… Read More
Box Plot is the visual representation of the depicting groups of numerical data through their quartiles. Boxplot is also used to detect the outlier in… Read More
Prerequisite: Seaborn, Barplot In this article, we are going to see how to sort the bar in barplot using Seaborn in python. Seaborn is an… Read More