Posts by Sachin Rastogi

Author Biographical Info: Not available

Python program to calculate BMI

By Sachin Rastogi

In this article, we are going to learn how to calculate the Body Mass Index (BMI) using Python. Body Mass Index is also known as the Quetelet Index. It is a value calculated using .... Read More

Python program to calculate the Standard Deviation

By Sachin Rastogi

In this article, we are going to understand about the Standard Deviation and how it is calculated in Python. Before the calculation of Standard Deviation, we need to understand wha.... Read More

Python program to calculate EMI

By Sachin Rastogi

In this article, we are going to calculate the monthly EMI of any principal amount with Python programming. For this task first, we need to understand that what is EMI. EMI:- EMI .... Read More

Python program to calculate GST

By Sachin Rastogi

In this article, we are going to calculate the GST (Goods and Services Tax) in Python. For calculating GST we need to understand that what is GST? What does GST stands for? GST:- .... Read More

Convert RGB to hex color code in Python

By Sachin Rastogi

In this article, we are going to learn about how to convert RGB to hex color code in python. This article is mainly for the conversion of RGB to hex color code but we will also see.... Read More

Use of math.isfinite() method in Python

By Sachin Rastogi

In this article, we are going to learn the use of math.isfinite() method in Python. This is an inbuilt function of one of the popular module named math in Python. isfinite() return.... Read More

Create a plot with broken axis in Python using Matplotlib

By Sachin Rastogi

Here in this article, we are going to plot a graph or figure with the broken axis using the Python matplotlib library. In an earlier article, we learned about how to plot a graph o.... Read More

Check if a string is a keyword or not in Python

By Sachin Rastogi

In this article, we are going to learn how to check whether the given string is a keyword or not in Python. For this, we have to first understand what is Keyword. Keyword:– .... Read More

Related Posts