Python
Python is a high-level programming language that is object-oriented with dynamic semantics.
Graph Plotting in Python
Introduction Python has the ability to create graphs by using the matplotlib library. It has numerous packages and functions which generate a wide variety of graphs and plots. It is also very simple to use. It along with numpy and other python built-in functions achieves the goal. In this article
Inheritance in Python: Types
Introduction Inheritence is a process of obtaining properties and characteristics(variables and methods) of another class. In this hierarchical order, the class which inherits another class is called subclass or child class, and the other class is the parent class. Inheritance is categorized based on the hierarchy followed and the

Lemmatization In Python
Introduction Lemmatisation main purpose is to remove the inflectional endings only and to return the base word or the dictionary form of a word. This base word/dictionary word is called lemma. Lemmatisation is basically the process of grouping together different forms of word into one word of similar meaning.

Matplotlib Pyplot Legend
Matplotlib is the package used for data visualization and is one of the most popular packages in python. As the name suggests Matplotlib works like MATLAB. Pyplot is a cluster of functions that makes matplotlib like MATLAB. Each pyplot function takes is used to make some changes to a figure

Decision Tree Algorithm: Explantation and Implementation
Introduction The decision tree is the most efficient and popular categorization and prediction method. Each internal node in a decision tree represents a test on an attribute, each branch a test result, and each leaf node (terminal node) a class label. Decision trees are a sort of tree structure that

Palindrome Program: Python Implementation
Introduction Have you ever thought of the word “MALAYALAM” and why its opposite is the same, and what do we call a word? Don't worry, dear, when Board Infinity is here. In this article, we will discuss how we can implement palindrome in python. If a word’s opposite is

Matplotlib Scatter in Python
Overview “matplotlib” is a library in Python that enables the creation of interactive, animated, and static visualizations. It may also be used in plotting several plots such as 3-D plots, pie charts, histograms, bar charts, line plots, scatter plots, and many more. We will learn about the scatter plot from

Enum in Python: A Detailed Guide
Introduction A data collection object is transformed into an enumerate object using Python's Enumerate method. It gives back an object with a counter serving as the key for each value. This facilitates access to collection items and enables us to keep track of how frequently we have used them. A

Data Types in Python
Introduction Data type represents the kind of value that tells what operations can be performed on a particular data. Since everything is an object in Python programming language, data types are classes and variables are the instances(objects) of these classes. Python is a dynamically typed language; hence it is