Python Programming
In Python: Please include comment, docstring and output of the code
Change the CheckingAccount class so that a $1 fee is levied for deposits or withdrawals in excess of three free monthly transactions. Place the code for computing the fee into a separate method that you call from the deposit and withdraw methods.
base code: accountdemo.py and accounts.py
Here is a sample of docstring for Class: class Person: """ A class to represent a person.
...
Attributes ---------- name : str first name of the person surname : str family name of the person age : int age of the person
Methods ------- info(additional=""): Prints the person's name and age. """