Input bank info and deposit and withdrawl
You need to complete and submit this project to successfully complete the course. Software Requirements: To perform the steps in this project, you need to install Python in your local system first. You can refer to Programming Basics - Demo Install Python in the course for more information on installation.
(Use parameterized constructors in all classes to initialize default values)
- IFSC_Code
- bankname
- branchname
- loc
- CustomerID
- custname
- address
- contactdetails
Create an account class that inherits from bank class with the following attributes (Use Super () to pass
- AccountID
- Cust Object of Customer
- balance
- getAccountInfo()
- deposit(2000,'true')
- widthraw(500)
- getBalance()
Create a SavigsAccount class that inherits from the account with the following attributes (Use Super () to
● SMinBalance
- getSavingAccountInfo()
- deposit(2000,'true')
- widthraw(500)
- getBalance()