In this post, we will learn how to parse HTML (Hypertext Markup language) in Python. Parsing is a technique of examining web text which is the combination of different tags, tokens.... Read More
This tutorial will give us a piece of information about the Python Global Interpreter Lock (GIL). What is Global Interpreter lock (GIL) in Python Python global interpreter lock(GIL.... Read More
oct() function in Python: oct() function is an important function in Python . It transforms any data type into the octal form. If anyone wants to convert any data from any format t.... Read More
This tutorial will help you to understand how to do decrement in while loop in Python. In programming, we use a loop to execute repeatedly a block of statements until a specific co.... Read More
In this tutorial, you will learn how to take input from a user in Python. A simple program to ask for the name in Python yourName = input("enter the name: ") print("hello",yourName.... Read More
In this tutorial, we will learn how to reverse a tuple in Python with some easy examples. In many situations, you might have come up with this requirement. I know you are here beca.... Read More
Our task is to find all the peaks and troughs in the given list of integers by the user in Python. We are given the list of integers. Now the first question which comes to our mind.... Read More
This article is based on some interesting graph plotting problems and their solutions. Let us consider one of those problems which you might probably encounter while practicing gra.... Read More