How I do that program in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How I do that program in python

Problem 1 - Paying Debt off in a Year 0.0/10.0 points (graded) Write a program to calculate the credit card balance after one year if a person only pays the minimum monthly payment required by the credit card company each month. The following variables contain values as described below: balance - the outstanding balance on the credit card annualInterestRate - annual interest rate as a decimal monthlyPaymentRate - minimum monthly payment rate as a decimal For each month, calculate statements on the monthly payment and remaining balance. At the end of 12 months, print out the remaining balance. Be sure to print out no more than two decimal digits of accuracy - so print Remaining balance: 813.41 instead of Remaining balance: 813.4141998135 So your program only prints out one thing: the remaining balance at the end of the year in the format: Remaining balance: 4784.0 A summary of the required math is found below: Monthly interest rate= (Annual interest rate) / 12.0 Minimum monthl

17th Sep 2018, 6:23 AM
horacio981
horacio981 - avatar
1 Answer
+ 1
horacio981 You have to try and if you get stuck, ask for help on YOUR problem but dont expect that other users make YOUR assignements
17th Sep 2018, 7:46 AM
KrOW
KrOW - avatar