Your manager has asked you to enhance and correct their


Please provide python tkinter GUI soution for the below problem.
Please Dont post wrong or spam answer if you don't know the solution.

Loan Calculator Enhancement

Introduction

You are a systems analyst working for a company that provides loans to customers. Your manager has asked you to enhance and correct their existing Loan Calculator program, which is designed to calculate monthly and total payments given the loan amount, the annual interest rate, and the duration of the loan.

Although the current version of the program (hereby termed the "As Is" version) has some functionality, there are several missing pieces, and the user would like to see significant improvements.

Also, the program has some bugs that need to be fixed. After a requirements elicitation session , you have uncovered the following facts about the As Is version, and you are prepared to work with this existing program and create the enhanced version (hereby termed the To Be version).

Note: the as-is program is Listing 9.11 LoanCalculator.py, which is described in section 9.7 of the textbook. The existing code is available in the Ch9 examples, which you can download from Canvas.

The requirements are discussed below.

The As Is System

In its current state, the program takes user input in the form of an annual interest rate, number of years, and total loan amount. It displays the calculated monthly payment, and the calculated total payment. This image shows an example.

This is fine as far as it goes. But it has a glitch. For example, if the user fails to enter proper numeric values, the program aborts with an ugly message like this:

Users are very annoyed when they see this, and they have to restart the program in order to continue their work.

Also, the program is incomplete. There is more functionality that the users want, which is described below.

The To Be System

The users would like additional functionality to the program, and also some corrections.

First, your program should handle exceptions more gracefully. Rather than the ugly situation described above, an error message should appear telling the user what correction to make. For example, if the user clicks the calculate button without having proper input data entered, you should display a dialog like this:

Second, the program should include an amortization schedule. This should be displayed in a Text widget. This screens shows an example of what would appear given user input:

Note: for hints on how to calculate the amortization schedule, see problem 5.24 on page 162 of your textbook. Instead of printing as shown in the algorithm on page 162, you will either concatenate to a string or insert into the Text widget.

Note also that the interest, monthly payment, and total payment values are shown in nice currency format.

Finally, we want to be able to save the loan report to a file (note the extra button in the above figure). If the user wants to do this, you should prompt the user to enter the loan recipient's name using a dialog, as shown below:

When the user enters the name, you should write to a file named based on the entered name. This should include data shown as below:

In addition to the proper functioning program, please also include a modified UML diagram. The original UML diagram is included in the PowerPoints for Ch9. The modified UML diagram will include any additional methods you wrote to accomplish your programming task.

Final Deliverables:

Upload the modified Python program and the modified UML diagram to Canvas.

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: Your manager has asked you to enhance and correct their
Reference No:- TGS02892446

Expected delivery within 24 Hours