-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01-private-account-attributes.py
More file actions
259 lines (177 loc) · 7.09 KB
/
01-private-account-attributes.py
File metadata and controls
259 lines (177 loc) · 7.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
"""Question: Create a class named Account with attributes account_number
and balance. Add methods to deposit, withdraw, and transfer money to another account.
"""
# LEARNING CHALLENGE
#
# Before looking at any solution below, please try to solve this yourself first!
#
# Tips for success:
# - Read the question carefully
# - Think about what classes and methods you need
# - Start with a simple implementation
# - Test your code step by step
# - Don't worry if it's not perfect - learning is a process!
#
# Remember: The best way to learn programming is by doing, not by reading solutions!
#
# Take your time, experiment, and enjoy the learning process!
# Try to implement your solution here:
# (Write your code below this line)
# HINT SECTION (Only look if you're really stuck!)
#
# Think about:
# - What attributes does the Account class need?
# - How do you handle insufficient funds when withdrawing?
# - How does transfer work? (hint: it's like withdraw from one and deposit to another)
# - Should you allow negative balances?
#
# Remember: Start simple and build up complexity gradually!
# ===============================================================================
# STEP-BY-STEP SOLUTION
# ===============================================================================
#
# CLASSROOM-STYLE WALKTHROUGH
#
# Let's solve this problem step by step, just like in a programming class!
# Each step builds upon the previous one, so you can follow along and understand
# the complete thought process.
#
# ===============================================================================
# Step 1: Define the Account class
# ===============================================================================
# Explanation:
# Let's start by creating our Account class. This class will represent
# a bank account with basic banking operations.
class Account:
pass # We'll add methods next
# What we accomplished in this step:
# - Created the basic Account class structure
# Step 2: Add the constructor
# ===============================================================================
# Explanation:
# The __init__ method initializes the Account with account_number and balance.
# We'll set a default balance of 0 if none is provided.
class Account:
def __init__(self, account_number, balance=0):
self.account_number = account_number
self.balance = balance
# What we accomplished in this step:
# - Added constructor to initialize account_number and balance
# - Used default parameter for balance
# Step 3: Add the deposit method
# ===============================================================================
# Explanation:
# The deposit method adds money to the account. This is straightforward -
# we just add the amount to the current balance.
class Account:
def __init__(self, account_number, balance=0):
self.account_number = account_number
self.balance = balance
def deposit(self, amount):
self.balance += amount
# What we accomplished in this step:
# - Added deposit method to add money to the account
# Step 4: Add the withdraw method
# ===============================================================================
# Explanation:
# The withdraw method removes money from the account, but we need to check
# if there are sufficient funds first to prevent negative balances.
class Account:
def __init__(self, account_number, balance=0):
self.account_number = account_number
self.balance = balance
def deposit(self, amount):
self.balance += amount
def withdraw(self, amount):
if amount <= self.balance:
self.balance -= amount
else:
print("Insufficient funds")
# What we accomplished in this step:
# - Added withdraw method with insufficient funds checking
# Step 5: Add the transfer method
# ===============================================================================
# Explanation:
# The transfer method moves money from this account to another account.
# It's essentially a withdraw from this account and a deposit to the other.
class Account:
def __init__(self, account_number, balance=0):
self.account_number = account_number
self.balance = balance
def deposit(self, amount):
self.balance += amount
def withdraw(self, amount):
if amount <= self.balance:
self.balance -= amount
else:
print("Insufficient funds")
def transfer(self, amount, other_account):
if amount <= self.balance:
self.withdraw(amount)
other_account.deposit(amount)
else:
print("Insufficient funds")
# What we accomplished in this step:
# - Added transfer method that uses existing withdraw and deposit methods
# Step 6: Create instances and test our class
# ===============================================================================
# Explanation:
# Finally, let's create instances of our Account class and test all the banking operations
# to make sure everything works correctly.
class Account:
def __init__(self, account_number, balance=0):
self.account_number = account_number
self.balance = balance
def deposit(self, amount):
self.balance += amount
def withdraw(self, amount):
if amount <= self.balance:
self.balance -= amount
else:
print("Insufficient funds")
def transfer(self, amount, other_account):
if amount <= self.balance:
self.withdraw(amount)
other_account.deposit(amount)
else:
print("Insufficient funds")
# Test our class:
# Create two accounts
acc1 = Account("12345", 1000)
acc2 = Account("67890", 500)
print(f"Account 1 initial balance: ${acc1.balance}")
print(f"Account 2 initial balance: ${acc2.balance}")
# Test deposit
acc1.deposit(200)
print(f"Account 1 after $200 deposit: ${acc1.balance}")
# Test withdraw
acc1.withdraw(150)
print(f"Account 1 after $150 withdrawal: ${acc1.balance}")
# Test transfer
acc1.transfer(300, acc2)
print(f"Account 1 after $300 transfer: ${acc1.balance}")
print(f"Account 2 after receiving $300: ${acc2.balance}")
# Test insufficient funds
acc1.withdraw(2000) # Should print "Insufficient funds"
# What we accomplished in this step:
# - Created and tested our complete Account implementation
# - Demonstrated all banking operations working together
# ===============================================================================
# CONGRATULATIONS!
#
# You've successfully completed the step-by-step solution!
#
# Key concepts learned:
# - Class design for real-world objects (bank accounts)
# - Method interaction (transfer uses withdraw and deposit)
# - Input validation and error handling
# - Object interaction (accounts working with other accounts)
#
# Try it yourself:
# 1. Start with Step 1 and code along
# 2. Test each step before moving to the next
# 3. Understand WHY each step is necessary
# 4. Experiment with modifications (try adding interest calculation or account history!)
#
# Remember: The best way to learn is by doing!
# ===============================================================================