1 | class Account: |
2 | def __init__(self): |
3 | self.balance = 0 |
4 | |
5 | def deposit(self, sum): |
6 | self.balance += sum |
7 | |
8 | def withdraw(self, sum): |
9 | self.balance -= sum |
10 | |
11 | def get_balance(self): |
12 | return self.balance |
13 | |
14 | |
15 | |
16 | |
17 | def main(): |
18 | |
19 | accounts = {} |
20 | accounts[259] = Account() |
21 | accounts[632] = Account() |
22 | |
23 | accounts[259].deposit(500) |
24 | accounts[632].deposit(800) |
25 | account[259].withdraw(25) |
26 | |
27 | print(accounts[259].get_balance()) |
28 | print(accounts[632].get_balance()) |
29 | |
30 | |
31 | main() |