In Python . Write a class Account and associated constructor(s)to initialize accounts as objects. A bank allows 3 types ofaccounts Checking account Savings Account Business Account . Writefour constructors within the class Account for initializing eachtype of account object. Checking account has ACCNumber, CustomerID,AccBalance, DebitCardNo. Saving account has ACCNumber, CustomerID,AccBalance. Business account has ACCNumber, CustomerID, AccBalance,BusinessName, and BusinessID.Should be able to check balance , makedeposit , and withdraw from each accounts .Write the codes fordepositing , withdrawal , and showing updating balances for eachaccount .For example withdrawal , from which account, amount todeposit or withdraw, your balance is ..
Answer