WAP using python to calculate simple interest
Answers
Answered by
0
Answer:
SI=( P*N*R)/100 formula
Answered by
4
Question:-
- Write a program using python to calculate simple interest.
Program:-
p=float(input("Enter the principal: "))
r=float(input("Enter the rate of interest per annum: "))
t=float(input("Enter the time in years: "))
si=(p*r*t)/100
print("Simple Interest earned is: ",si)
Similar questions