Question: Write a function called compute_compound_interest. Given a principal balance, an annual interest rate, a compounding frequency, and a time (in years), compute_compound_interest returns the amount
Write a function called compute_compound_interest. Given a principal balance, an annual interest rate, a compounding frequency, and a time (in years), compute_compound_interest returns the amount of compound interest generated. output = compute_compound_interest(1500, 0.043, 4, 6) print(output) # --> 438.8368221341061
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
