Instagram
youtube
Facebook
Twitter

Calculate Simple Interest

A Python program to compute Simple Interest using the formula (Principal × Rate × Time) / 100.

Explanation:

Take Input: Get principal, rate, and time as floating-point numbers from the user.
 

  1. Calculate Simple Interest: Use the formula (principal * rate * time) / 100.
     
  2. Store Result: Save the calculated interest in simple_interest.
     
  3. Display Output: Print the computed Simple Interest.
     

Program:

principal = float(input("Enter Principal Amount: "))

rate = float(input("Enter Annual Interest Rate (%): "))

time = float(input("Enter Time (in years): "))

simple_interest = (principal * rate * time) / 100

print("Simple Interest:", simple_interest)