Question: # Python Program # Python write a program that calculates the mortgage for a house and create a summary at the year end. The program
# Python Program # Python
write a program that calculates the mortgage for a house and create a summary at the year end. The program will consider the following steps: Prompt user to enter Principal amount, interest rate and loan terms. the monthly payment is allocated into principal payment and interest. The yearly summary that consists of monthly payments, interest paid, principal paid and outstanding balance. include the mortgage origination date. Your code must include at least the minimum number of each of the following: 4 container types (list, tuple, set AND dictionary) 1 iteration type (for, while) 1 conditional (if) 1 try block with an else condition 1 user-defined function 1 input and/or output file (include input data with your project) 1 user-defined class. The class must be imported by your main program from a separate file and have the following required structures. at least 1 private and 2 public self attributes at least 1 private and 1 public method that take arguments, return values and are used by your program an init() method that takes at least 1 argument a repr() method a magic method
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
