Write a program in python to obtain principal amount , rate of interest and time from user and compute simple interest
Answers
Answered by
18
p=float(input("enter the principal amount"))
r=float(input("enter the rate of intrest"))
t=float(input("enter the time period"))
I=(p*r*t)/100
print("sinple intrest= ",I)
Similar questions