Posts by Sai Mukesh Reddy Gutha

Author Biographical Info: Not available

Extracting Title and headers of a Web Page using BeautifulSoup in Python

By Sai Mukesh Reddy Gutha

Hello Coder! In this article, we are going to learn how to extract the title of a web page using BeautifulSoup in Python. What is BeautifulSoup? BeautifulSoup is a Python library t.... Read More

Operations on Set Objects in Python with Examples

By Sai Mukesh Reddy Gutha

Hi Learner! In this article, we are going to learn to find the common characters of two strings using sets in Python. Let us see how simple it can be to find the common characters.... Read More

Finding Magnitude of a Complex Number in Python

By Sai Mukesh Reddy Gutha

Hello! In this article, We use Python to get the Magnitude of a Complex Number using a simple snippet. First, let us learn the basics of complex numbers in Python. Complex Numbers .... Read More

How to get Users of Windows/Linux Systems using Python?

By Sai Mukesh Reddy Gutha

Hello Geek! In this article, we will use Python to get the current users on the Windows and Linux Systems. The method that we are going to use to get the current users is users(). .... Read More

Python Program to Calculate Area of any Triangle using its coordinates

By Sai Mukesh Reddy Gutha

Hey Coder! In this article, we are going to learn how to calculate the area of any triangle using its coordinates with the help of a Python program. Formula to Calculate Area of a .... Read More

Python Program to check if an input matrix is Upper Triangular

By Sai Mukesh Reddy Gutha

Hey Coder! In this article, we will write a Python program to check if an input matrix is an Upper Triangular matrix. Upper Triangular matrix An Upper Triangular Matrix is a square.... Read More

Python Program to get IP Address of your Computer

By Sai Mukesh Reddy Gutha

Hello Coder! In this article, we will learn to write a Python program to get the IP Address of our computer. Let us know more about the IP Address before getting into the program. .... Read More

Find Battery Percentage and Charging status in Windows and Linux using Python

By Sai Mukesh Reddy Gutha

Hey Coder! In this article, we are going to get the Battery percentage using Python. In this Program, we will be needing the psutil Library to get the information of the Battery. L.... Read More