Python - Medium Articles
The Radiobutton is a standard Tkinter widget used to implement one-of-many selections. Radiobuttons can contain text or images, and you can associate a Python function… Read More
Sorting has quite vivid applications and sometimes, we might come up with a problem in which we need to sort the nested dictionary by the… Read More
Sometimes, we can get elements in range as input but some values are missing in otherwise consecutive range. We might have a use case in… Read More
Stem and Leaf Plot is a way of representing the data. This plot is used to show the absolute frequency in different classes similar to… Read More
To set up a Kotlin environment for the command line, you need to do the following steps: Install the Java Development Kit (JDK): Kotlin runs… Read More
Kotlin is a statically typed, general-purpose programming language developed by JetBrains that has built world-class IDEs like IntelliJ IDEA, PhpStorm, Appcode, etc. It was first… Read More
To identify circles, ellipses, or in general, any shape in which the pixels are connected we use the SimpleBlobDetector() function of OpenCV. In non-technical terms,… Read More
Thresholding is a technique in OpenCV, which is the assignment of pixel values in relation to the threshold value provided. In thresholding, each pixel value… Read More
Accessing elements in a list has many types and variations. These are an essential part of Python programming and one must have the knowledge to… Read More
Kivy is a platform independent GUI tool in Python. As it can be run on Android, IOS, linux and Windows etc. It is basically used… Read More
Prerequisite: Simple Thresholding using OpenCV In the previous post, Simple Thresholding was explained with different types of thresholding techniques. Another Thresholding technique is Adaptive Thresholding.… Read More
As we know Python is a suitable language for script writers and developers. Let’s write a script for Personal Voice Assistant using Python. The query… Read More
Python is a widely used general-purpose, high-level programming language. It was initially designed by Guido van Rossum in 1991 and developed by Python Software Foundation.… Read More
Given Preorder, Inorder and Postorder traversals of some tree. The task is to check if they all are of the same tree.Examples:  Input : Inorder… Read More
Sometimes, we require to get the words that start with a specific letter. This kind of use case is quite common in places of common… Read More
Sometimes, while working with data, we need to perform the string tokenization of the strings that we might get as an input as list of… Read More
This article is regarding the Microsoft Summer Internship 2019 recruitment process that took place at my college campus – VIT University, Vellore. Round 1: Group… Read More
Garbage collection is a memory management technique used in the .NET Framework and many other programming languages. In C#, the garbage collector is responsible for… Read More
As we know Python is a scripting language, and can be easily used to automate simple tasks. In this article, we will learn how to… Read More
Many times, the data we handle might not be in the desired form for any application and has to go through the stage of preprocessing.… Read More