Category: Python Programs
In this post, we will discuss how to write a python program to solve the quadratic equation. What is Quadratic Equation? In algebra, a quadratic equation is an equation having the form ax2 + bx + c where x represents...
In this article, we will learn how to make a calculator program in python. A Calculator is a device which performs the arithmetic operations like addition, subtraction, multiplication, division etc. I have made 4...
In this post, I will be discussing how to write a Python Program to print the Multiplication table. To make this program, I will be using for loop. I will be discussing two ways...
In this post, I will be discussing how to write a Python Program to Find Largest or Greatest among three Numbers. I will be discussing three ways to write the python program. Using if-else...
In this article, we will discuss how to write a python program to check whether a given year is a leap year or not. Firstly, let’s discuss “What is Leap year?”. A year is...
In this article, we discuss will how to write a python program to find the reverse of string or number. We will be discussing a total of 6 ways. Finding reverse of a number...
In this post, we will discuss how to write a python program to find the sum of digits of a number. In this python program, we will simply add the digits present in a number....
A palindrome is a string or number which is when read from starting or end it will spell the same. For example:- radar, it will spell same whether we read it from start or...
Armstrong number is a number whose sum of the nth power of digits is equal to the number itself. Where n is called the order, which is equal to the number of digits present in...
The full form of GCD is ” Greatest Common Divisor”. Which means the greatest common factor of the two numbers. It is also known by the name HCF(Highest common factor). I will be using both...