Question: Typical Using python: Design a class named Account that contains: . A private data field named id, balance, annual interest rate for the account (default

Typical Using python: Design a class named Account that contains: . A private data field named id, balance, annual interest rate for the account (default o). Assume all accounts have the same interest rate. A private Date data field named date created that stores the date when the account was created. A constructor that creates an account with the specified id and initial balance. The accessor/get and mutator/set methods for id, balance, and annual interest rate. The accessor/getter method for date created. A method named get_monthly_interest ratel) that returns the monthly interest rate. A method named get monthly Interest() that returns the monthly interest. A method named withdraw that withdraws a specified amount from the account. str_method to print the string representation of the class . A method named deposit that deposits a specified amount to the account. Write a test program that creates an Account object with an account ID of 1122, a balance of $20,000, and an annual interest rate of 4.5%. Use the withdraw method to withdraw $2,500, use the deposit method to deposit $3,000, and print the balance, the monthly interest, and the date when this account was created
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
