Topics

Python

About this topic: Articles tagged __TAG__

Showing 1747 articles

Topics

Articles

Showing 1747 articles

How-tos How to Merge Two Sorted Lists in Python The article includes three different methods to merge two sorted lists in Python. Two of them are in-built functions, sorted() and heapq.merge(), and the third one is a detailed … How-tos How to Scroll Down a Website Using Python Selenium This tutorial demonstrates how to automate the task of scrolling down a website using Selenium in Python. How-tos How to Open and Close Tabs in a Browser Using Selenium Python This tutorial demonstrates how to automatically open a new tab in a browser using Selenium in Python. How-tos How to Login to a Website Using Selenium Python This tutorial demonstrates automating a website's login using an automation tool known as Selenium in Python. How-tos How to Get Longest Common Substring in Python The article discusses three different approaches to finding the longest common substring between the two given strings in Python. The simplest approach uses three loops and is … How-tos How to Print a Multiplication Table in Python Using Basic Programming Concepts This article illustrates basic programming concepts in Python using the example of a times table. Times tables are printed for a user-defined number and user-defined range of … How-tos How to Use the OpenCV solvepnp() Function to Solve the PnP Problem This tutorial discusses working with the solvepnp function in OpenCV in Python. How-tos How to Use OCR to Extract Text From an Image in OpenCV This article covers everything you need to get started with optical character recognition, also known as OCR. This will guide you to learn how to detect and extract text from … How-tos How to Detect Image Color Using OpenCV in Python This tutorial discusses how to perform image color detection using the OpenCV library in Python. How-tos How to Rethrow Exception in Python This article discusses how to rethrow an exception in Python using the raise statement. How-tos How to Object Tracking Using OpenCV This tutorial discusses how to perform object tracking using OpenCV in Python. How-tos How to Differentiate Iterator and Generator in Python This article gives the most basic differences between iterators and generators in Python, and illustrates these points with an example. How-tos How to Calculate Average and Grade in Python This article tells us how to calculate grade of students against 5 subject marks and get an average number for the subjects. How-tos How to Redirect in Python Flask We will learn, with this explanation, how to use the redirect() function to redirect the user and see how we can use it for multiple purposes in Flask. How-tos How to Install Beautiful Soup in Python This article discusses 4 ways to install the beautiful soup library in Python. In the article, we have used PIP, APT, and WGET commands to install the beautiful soup library in … How-tos How to Create a Static Folder in Flask We will learn, with this explanation, how to use static assets or static files inside the static directory, and we will also learn how to import our custom CSS file in Flask. How-tos How to Return a Valid JSON Response in Flask We go to learn with this explanation about JSON support in the flask and we also go to learn how to create an api and how to return it in JSON response with the help of jsonify() … How-tos How to Use Different Types of Parameters Inside the URL in Flask We will learn, with this explanation, about URL converters in the Flask app which means the ability to pass parameters in any URL. We will also learn how to pass different types of … How-tos How to Send String Using Python Socket In computer programming, socket programming connects two or more nodes on the same network to communicate with each other. One of these nodes plays the role of a server while the … How-tos How to Handle Request Data in JSON Format in Flask We will learn, with this explanation, what JSON is and how to handle incoming request data in JSON format. We will also learn how to use the Postman Chrome extension to send JSON … How-tos How to Get the Reverse Complement of a DNA Strand Using Python This article discusses how we can create a reverse complement of a DNA strand using Python. It uses the in-built string methods and the Biopython module. How-tos How to Get Max Heap in Python This article illustrates how to get a max heap in Python by combining the heapq module with custom code. How-tos How to Profile a Python Code This tutorial demonstrates how to profile code to check its execution time in Python. How-tos How to Obfuscate Python Code This tutorial demonstrates to obfuscate Python's code to prevent it from being understood by humans.

← All topics