Home / Expert Answers / Computer Science / in-python-please-case-study-an-investment-report-it-has-been-said-that-compound-interest-is-the-pa188

(Solved): In Python please! :) CASE STUDY: An Investment Report It has been said that compound interest is the ...



In Python please! :)

CASE STUDY: An Investment Report
It has been said that compound interest is the eighth wonder of the world. Our next case stu
Figure 3-1 The user interface for the investment report program
CASE STUDY: An Investment Report It has been said that compound interest is the eighth wonder of the world. Our next case study, which computes an investment report, shows why. Request Write a program that computes an investment report. Analysis The inputs to this program are the following: - An initial amount to be invested (a floating-point number) - A period of years (an integer) - An interest rate (a percentage expressed as an integer) The program uses a simplified form of compound interest, in which the interest is computed once each year and added to the total amount invested. The output of the program is a report in tabular form that shows, for each year in the term of the investment, the year number, the initial balance in the account for that year, the interest earned for that year, and the ending balance for that year. The columns of the table are suitably labeled with a header in the first row. Following the output of the table, the program prints the total amount of the investment balance and the total amount of interest eamed for the period. The proposed user interface is shown in Figure 3-1. Figure 3-1 The user interface for the investment report program


We have an Answer from Expert

View Expert Answer

Expert Answer


Program for the given scenario: amount= float(input("Enter the investment amount: "))#Taking Initial amount as input time = int(input("Enter the numbe
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe