Computer Science, asked by mohdalishamsi4131, 9 months ago

Write a Python program to calculate the amount payable if money has been lent on simple interest.
Principal or money lent = P, Rate of interest = R% per annum and Time = T years. Then Simple Interest
(SI) = (P x R x T)/ 100.
Amount payable = Principal + SI.
P, R and T are given as input to the program.

Answers

Answered by Anonymous
19

Answer:

hi...

Explanation:

p=eval(input("enter the principal amount"))

r=eval(input("enter the rate of interest"))

t=eval(input("enter the time period"))

si=(p*r*t)/100

payable_amount=p+si

print(payable_amount,"is the payable amount")

#hope it helps you

please mark brainliest

Similar questions