Python - Medium Articles
At first, the word Metaprogramming seems like a very funky and alien thing but if you have ever worked with decorators or metaclasses, you were… Read More
Prerequisite: Regular Expressions Note: Output of all these programs is tested on Python3  1) Which of the options below could possibly be the output of… Read More
Prerequisite: GeneratorsWe all are familiar with function which is also known as a subroutine, procedure, sub-process, etc. A function is a sequence of instructions packed… Read More
Prerequisite : MongoDB : An introduction MongoDB is a cross-platform, document-oriented database that works on the concept of collections and documents. MongoDB offers high speed,… Read More
In Python, we sometimes need to save the object on the disk for later use. This can be done by using Python pickle. In this… Read More
Python is a widely used general-purpose, high-level programming language. In this article, we will learn about pickling and unpickling in Python using the pickle module. The… Read More
This article aims to introduce the use of the python library: qrtools. This library can be used to both read QR codes and generate them.… Read More
Before seeing what a closure is, we have to first understand what nested functions and non-local variables are.  Nested functions in Python A function that… Read More
Speech Recognition is an important feature in several applications used such as home automation, artificial intelligence, etc. This article aims to provide an introduction to… Read More
Prerequisite – Lists in Python Predict the output of the following Python programs.  Program 1   Python list = [1, 2, 3, None, (1, 2, 3, 4,… Read More
Prerequisite – Strings in Python Predict the output of the following Python programs. These question set will make you conversant with String Concepts in Python… Read More
In natural language processing (NLP), stopwords are frequently filtered out to enhance text analysis and computational efficiency. Eliminating stopwords can improve the accuracy and relevance… Read More
Given N modular equations: A ? x1mod(m1) . . A ? xnmod(mn) Find x in the equation A ? xmod(m1*m2*m3..*mn) where mi is prime, or… Read More
Template matching is a technique for finding areas of an image that are similar to a patch (template). A patch is a small image with certain… Read More
In last article, we have discussed the basics of sending a mail from a Gmail account without any subject as well as without any attachment.… Read More
The Hough Transform is a method that is used in image processing to detect any shape, if that shape can be represented in mathematical form.… Read More
Machine learning is a type of artificial intelligence (AI) that provides computers with the ability to learn without being explicitly programmed. Machine learning focuses on… Read More
While coding in various competitive sites, many people must have encountered NZEC errors. NZEC (non zero exit code) as the name suggests occurs when your… Read More
K-Means Clustering is an Unsupervised Machine Learning algorithm, which groups the unlabeled dataset into different clusters. The article aims to explore the fundamentals and working… Read More
This article demonstrates – How to set up a simple Chat Room server and allow multiple clients to connect to it using a client-side script.… Read More