update
This commit is contained in:
parent
2992f4f408
commit
4f46de8d00
3330 changed files with 394553 additions and 76939 deletions
15
.config/Code/User/History/5b464f92/9FqA.py
Normal file
15
.config/Code/User/History/5b464f92/9FqA.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
class BankAccount:
|
||||
def __init__(self, account_no: str, name: str, balance: float) -> None:
|
||||
self.account_no = account_no
|
||||
self.name = name
|
||||
self.balance = balance
|
||||
|
||||
def deposit(self, amount: float) -> None:
|
||||
self.balance += amount
|
||||
|
||||
def withdraw(self, amount: float) -> None:
|
||||
self.balance -= amount
|
||||
|
||||
def bank_fees(self) -> None:
|
||||
|
||||
pass
|
Loading…
Add table
Add a link
Reference in a new issue