Write a program to find the amount to be calculated after 5 years of period, with 2.5% as rate of interest and principal amount being ₹10,000. Python
Answers
Answered by
1
when it is not specified whether it is compound or simple interest, we will have to take simple interest.
Amount after n years and at t% would be :
____________________________________________
We have 3 values.
principle, term, rate = 10000, 5, 2.5
____________________________________________
All we have to do is substitute these values into the equation:
CODE:
principle, term, rate = 10000, 5, 2.5
print(f'Your amount would be:{(principle*term*rate)/100}')
____________________________________________
Similar questions