Python program to calculate Simple Interest and Amount
Formula: SI = (P * R * T ) / 100
Amount = P + SI
#########################################
# Language : Python
# Topic: Calculate Simple Interest and amount
# si = (p * r * t) / 100, amount = p + si
# Author : Anjeev Singh
#########################################
p = float(input("Enter Principal Amount Rs.: "))
r = float(input("Enter Rate of Interest % : "))
t = float(input("Enter time (Years) : "))
si = (p * r * t) / 100
amount = p + si
print("\n Simple Interest : ", si)
print("\n Amount : ", amount)
Output: