In this post, we will be learning how to write a Python Program to Calculate Simple Interest of the...
Tag - Python Examples
Python Program to Find the Sum of Digits of a Number
Write a program to find the sum of first and last digits of a given number in python In this post...
Python Program to Find GCD or HCF of two numbers
The full form of GCD is ” Greatest Common Divisor”. Which means the greatest common...
Python Program to Add two numbers
To add numbers in python, firstly we have taken these two numbers from the user using...
Python Program to Print hello world
In this program, we will print the hello world on the output screen. We will be using the built...
Python User input Date and Time
Dealing with dates and times in Python can be a hassle. Thankfully, there’s a built-in way of...
Python Program to Calculate Area and Perimeter of Triangle
To find the area of a triangle you need to multiply the length and the height/altitude of a...
Program to Check Responses of a Student to the Multiple-Choice Exam in Python
Code for PROGRAM TO EVALUATE A MULTIPLE-CHOICE TEST in Python Programming. Write a program to check...
Input an integer (n) and computes the value of a+aa+aaa in Python
Write a program that computes the value of a+aa+aaa+aaaa with a given digit as the value of a in...
Get absolute value without using abs function nor if statement in Python
You can find the absolute value without using “ABS” with the simple method below. First...