Challenge 1: Implement a Banking Account
In this challenge, you will implement a banking account using the concepts of inheritance.
We'll cover the following...
Problem statement
Implement the basic structure of a parent class, Account, and a child class, SavingsAccount.
Task 1
Implement properties as instance variables, and set them to None or 0.
Account has the following ...
 Ask