Posts by Abinash Reddy
Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development
In this article, we will learn how to find the nth Decagonal Number in Python. But first, let’s learn a few points about Decagonal Numbers. formula of decagonal numbers D(n) .... Read More
In this article, we will discuss how to merge cells in an excel sheet using Python. We will use openpyxl module for merging cells. Installation of openpyxl using pip pip install op.... Read More
In this article, let’s discuss few points about the Stooge sort algorithm and its implementation in Python. Stooge sort is a recursive sorting algorithm. It is exceptional fo.... Read More
In this article, we will learn how to check whether a given number is a Hoax Number in Python. A number is said to Hoax Number only when the sum of digits of its distinct prime fac.... Read More
JSON stands for JavaScript Object Notation. It is an open, lightweight, text-based standard format developed for the exchange of human-readable data. In this article, we will explo.... Read More
This article, explains the difference between an interface and a class in Java. Class A class is a user-defined blueprint for creating objects. The “class” keyword is u.... Read More
In this article, we will learn about n-grams and the implementation of n-grams in Python. What is N-grams Text n-grams are widely used in text mining and natural language processin.... Read More
A Heatmap is a statistical representation that helps to represent the importance of the features in form of colors. In this article, we learn to plot a heatmap in Python. They are .... Read More