Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that takes the terms of a loan as inputs ( principal , interest rate as a % , number of payments per

Write a program that takes the terms of a loan as inputs(principal, interest rate as a %, number of payments per year, and the total number of years), compute the interest paid over the life of the loan, and produces the output shown below. To get the interest, you should subtract the principal from the amount accrued over the life of the loan.
The examples shown below are for:
Borrowing $100,000 for a condo financed over 30 years with 12 payments per year at 4.5%.
Borrowing $25,000 for a car financed over 6 years with 12 payments per year at 3.5%.
The total amount paid for a loan (accrued amount) is given by the formula below where A is the amount accrued over the life of the loan including principal, P is the principal, r is the rate as a decimal, n is the number of payments made per year and t is the life of the loan in years. Use the round function to have at most 1 decimal place in the answer.
Input:
a) python C:\Users
eda\DataProgramming\M1\assign1-4.py 1000004.51230
b) python C:\Users
eda\DataProgramming\M1\assign1-4.py 250003.5126
Output:
a) Interest Paid: $284769.8
b) Interest Paid: $5832.5

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database 10g Insider Solutions

Authors: Arun R. Kumar, John Kanagaraj, Richard Stroupe

1st Edition

0672327910, 978-0672327919

More Books

Students also viewed these Databases questions

Question

demonstrate the importance of induction training.

Answered: 1 week ago