Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 562 Bytes

File metadata and controls

12 lines (9 loc) · 562 Bytes

Python Programming Basics - Assignment

Problem Statement:

Create a program to manage Saving and Current account for user.

  1. Define class Account which will have class variable balance. Define classes Saving and Current which extended by class Account.
  2. Account number is required to open any account.
  3. As a user I should able to widraw / deposite amount.
  4. Minimum balance for Currunt account is 15000 and saving account is 1000.
  5. While widrawing from currunt account do not forget to apply 0.1 charges.
  6. Function should pass all test cases.