Posts by Anirudh Singh Sengar

Author Biographical Info: Not available

Find K’th Smallest/Largest Element in Unsorted Array in Python

By Anirudh Singh Sengar

From the given array, we have to find the kth number of the smallest or greatest number from unsorted array in Python. The array is unsorted and have distinct elements. For Example.... Read More

Data Type objects in NumPy Python

By Anirudh Singh Sengar

Data Type Objects describe the interpretation of the bytes in the fixed-size block corresponding to an array. These objects are instances of Python’s numpy.dtype class. It m.... Read More

Zip two lists of lists in Python

By Anirudh Singh Sengar

The zip function of Python is used to map a similar index element of the different containers (iterable). This function returns an iterator of tuples in the form of an object. If m.... Read More

Get similar words suggestion using Enchant in Python

By Anirudh Singh Sengar

In this tutorial, we will learn how to get similar words suggestion in Python using Enchant. In Python, Enchant suggests words that have nearly similar spelling as of the given wor.... Read More

Seaborn Multiple Line Plot in Python

By Anirudh Singh Sengar

In this article you are going to learn multiple line plot in Python using seaborn module. Visualization makes the data easy to understand because through it we can generate any kin.... Read More

Create a spelling checker using Enchant in Python

By Anirudh Singh Sengar

In Python, Enchant is a built-in module. It helps in checking the spelling of the word, suggesting the correct words related to the misspelled word. MySpell, ispell, aspell are a f.... Read More

Python | Quantile-Quantile Plot using SciPy

By Anirudh Singh Sengar

Q-Q plot is a plot between Quantile of x (one Variable) and Quantile of y (another Variable). Quantile:  Quantile word comes from the word ‘Quantity’. Quantile is simp.... Read More

Dynamic Attributes in Python

By Anirudh Singh Sengar

If the attribute of an instance is defined after creating an instance then the attribute is known as Dynamic Attribute. Everything in Python is an object. Even functions and method.... Read More