Posts from Python

How to parse HTML in Python

By Vimal Pandey

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

Python Global Interpreter Lock

By Nagi Reddy

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

Implementation of oct() function in Python

By Debajyoti Saha

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

Decrement in while loop in Python

By Sourav Dutta

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

Take input from user in Python

By DHANOOSH

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

Reverse a tuple in Python

By Bhavya Chhabra

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

Print all the peaks and troughs in a list of Integers in Python

By Shrimad Mishra

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

How to plot an angle in Python using matplotlib

By Tushit Garg

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

Related Posts