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
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
Geography,
4 months ago
Geography,
4 months ago
Physics,
9 months ago
Computer Science,
9 months ago
Math,
1 year ago