Question: write a function using Python Problem #2: Write a function that will return the total amount due for a loan after borrowing amount amt for
write a function using Python

Problem #2: Write a function that will return the total amount due for a loan after borrowing amount amt for n months with an interest rate of r%. The formula for compound interest rate calculation is: Total Amount = P (1 + r)"/12 Where P is the starting principle amount. For example, if you borrowed $10,000 for 36 months at an interest rate of 5%, the amount after 36 months will be: 10000x(1+0.05)3612 = 11576.25 The input to the compute_total_mount_with_compound_interest function will be p, r, and n
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
