Question: P = int ( input ( Enter starting principle please. ) ) n = int ( input ( Enter number of compounding

P = int(input("Enter starting principle please. "))
n = int(input("Enter number of compounding periods per year. "))
r = float(input("Enter annual interest rate. e.g.15 for 15%"))
y = int(input("Enter the amount of years. "))
FV = P *(((1+((r/100.0)/n))**(n*y)))
print ("The final amount after", y, "years is", FV)
 P = int(input("Enter starting principle please. ")) n = int(input("Enter number

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!