Python - Medium Articles
Prerequisite- HTTP Protocol, GET and POST requests using Python Introduction: PRG is one of many design patterns used in web development. It is used to… Read More
This is a chatbot that will give answers to most of your corona-related questions/FAQ. The chatbot will give you answers from the data given by… Read More
When the CPython interpreter executes your program, it first translates onto a sequence of bytecode instructions. Bytecode is an intermediate language for the Python virtual… Read More
In this article, we will learn the what, why, and how of multithreading and multiprocessing in Python. Before we dive into the code, let us… Read More
Edge Detection, is an Image Processing discipline that incorporates mathematics methods to find edges in a Digital Image. Edge Detection internally works by running a… Read More
This Project on Hotel Management is a general software developed (using Python) to simplify hotel operations by automating them. In this project, “AnCasa” is the… Read More
Sometimes, while working with Python strings, we can have problem in which we need to perform the replace of a word. This is quite common… Read More
In this article we will see how we can make a PyQt5 application which will visualize the subset search algorithm.  Sub Set Search : Sometimes… Read More
Given a string. The task is to write a regular expression to check whether a string starts and ends with the same character. Examples:  Input… Read More
For large quotients, floor division (//) doesn’t seem to be necessarily equal to the floor of regular division (math.floor(a/b)) Examples: Input : 269792703866060742 // 3… Read More
Locators Strategies in Selenium Python are methods that are used to locate single or multiple elements from the page and perform operations on the same.… Read More
Prerequisites: Python Programming LanguageThe package pynput.keyboard contains classes for controlling and monitoring the keyboard. pynput is the library of Python that can be used to… Read More
Locators Strategies in Selenium Python are methods that are used to locate elements from the page and perform an operation on the same. Selenium’s Python… Read More
Given an integer N, the task is to find the Nth natural number with exactly two bits set. Examples:   Input: N = 4 Output: 9 Explanation: Numbers with exactly… Read More
Selenium’s Python Module is built to perform automated testing with Python. Selenium Python bindings provide a simple API to write functional/acceptance tests using Selenium WebDriver.… Read More
Selenium’s Python Module is built to perform automated testing with Python. Selenium Python bindings provides a simple API to write functional/acceptance tests using Selenium WebDriver.… Read More
Tkinter is a built-in standard python library. With the help of Tkinter, many GUI applications can be created easily. There are various types of widgets… Read More
Sometimes, while working with Python dictionaries, we can have a problem in which we need to flatten dictionary of key-value pair pairing the equal index… Read More
A Surface Plot is a representation of three-dimensional dataset. It describes a functional relationship between two independent variables X and Z and a designated dependent… Read More
Prerequisites: Python Tkinter – ListBox Widget, Scrollable ListBox in Python-tkinter Tkinter is a GUI library in python which is easy to read and understand. In… Read More