Table of Contents
Python program to find simple interest
To find simple interest we just need to add principal amount, number of years and rate of interest and then divide it by 100.
Following is simple python program to calculate simple interest.
Program to calculate simple interest in Python
p = float(input("Enter principal amount : "))
n = float(input("Enter Number of years : "))
r = float(input("Enter Rate of interest : "))
si=(p*n*r)/100
print("Simple Interest : ",si)
Output :
Enter principal amount : 1500000
Enter Number of years : 3
Enter Rate of interest : 4.5
Simple Interest : 202500.0
We are aiming to explain all concepts of python in easiest terms as possible.

ITVoyagers
Author
PRACTICALS/PRACTICE PROGRAM IN PYTHON
CHECKOUT OTHER RELATED TOPICS
CHECKOUT OTHER QUIZZES
Quizzes on File Handling |
Easy quiz on file handling in python part 1 |
Easy quiz on file handling in python part 2 |
Quizzes on Exception Handling |
Easy quiz on Exception Handling in python part 1 |
Easy Quiz on Exception Handling in python part 2 |
Quizzes on Regular Expressions |
Easy Quiz on Regular Expression in python part 1 |
Quizzes on Python concepts coming soon… |
Python basic quiz |
New and easy python quiz basic part 1 |
New and easy python quiz (basic) part 2 |
New and easy python quiz (basic) part 3 |
Python practice quiz set |
Best Practice Quiz Set on Python Programming Part 1 |
Best Practice Quiz Set on Python Programming Part 2 |
Best Practice Quiz Set on Python Programming Part 3 |
Best Practice Quiz Set on Python Programming Part 4 |
Best Practice Quiz Set on Python Programming Part 5 |