Question: In python please Now write a function that calculates the minimum fixed monthly payment needed in order pay off a credit card balance within 12

In python please

In python please Now write a function that calculates the minimum fixedmonthly payment needed in order pay off a credit card balance within

Now write a function that calculates the minimum fixed monthly payment needed in order pay off a credit card balance within 12 months. By a fixed monthly payment, we mean a single number which does not change each month, but instead is a constant amount that will be paid each month. In this problem, we will not be dealing with a minimum monthly payment rate. The following variables are used as formal parameters for the function as described below: 1. balance - the outstanding balance on the credit card 2. annualInterestRate - annual interest rate as a decimal The function should return the lowest monthly payment that will pay off all debt in under 1 year, for example: Lowest Payment: 180 Assume that the interest is compounded monthly according to the balance at the end of the month (after the payment for that month is made). The monthly payment must be a multiple of $10 and is the same for all months. Notice that it is possible for the balance to become negative using this payment scheme, which is okay. A summary of the required math is found below: Monthly interest rate = (Annual interest rate) / 12.0 Monthly unpaid balance = (Previous balance) - (Minimum fixed monthly payment) Updated balance each month = (Monthly unpaid balance) + (Monthly interest rate x Monthly unpaid balance) Test Cases: Test Case 1: balance = 3329 annualInterestRate = 0.2 Result Your Code Should Generate: Lowest Payment: 310 Test Case 2: balance = 4773 annualInterestRate = 0.2 Result Your Code Should Generate: Lowest Payment: 440 Test Case 3: balance 3926 annualInterestRate = 0.2 Result Your Code Should Generate: Lowest Payment: 360

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!