-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04-vehicle-inheritance-system.py
More file actions
234 lines (158 loc) · 6.85 KB
/
04-vehicle-inheritance-system.py
File metadata and controls
234 lines (158 loc) · 6.85 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
"""Question: Define a class named Vehicle with attributes make, model, and year.
Create a subclass named ElectricVehicle that adds an attribute battery_capacity
and a method charge.
"""
# 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 Vehicle class need?
# - How do you create a subclass that inherits from Vehicle?
# - What additional attribute does ElectricVehicle need?
# - What should the charge method do?
#
# 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 Vehicle class
# ===============================================================================
# Explanation:
# Let's start by creating our Vehicle class. This will be our base class that
# contains the common attributes for all vehicles.
class Vehicle:
pass # We'll add methods next
# What we accomplished in this step:
# - Created the basic Vehicle class structure
# Step 2: Add the constructor to Vehicle class
# ===============================================================================
# Explanation:
# The __init__ method initializes the Vehicle with make, model, and year attributes.
# These are the basic pieces of information that all vehicles share.
class Vehicle:
def __init__(self, make, model, year):
self.make = make
self.model = model
self.year = year
# What we accomplished in this step:
# - Added constructor to initialize make, model, and year attributes
# Step 3: Define the ElectricVehicle subclass
# ===============================================================================
# Explanation:
# Now let's create the ElectricVehicle class that inherits from Vehicle. In Python,
# we specify inheritance by putting the parent class name in parentheses.
class Vehicle:
def __init__(self, make, model, year):
self.make = make
self.model = model
self.year = year
class ElectricVehicle(Vehicle):
pass # We'll add methods next
# What we accomplished in this step:
# - Created ElectricVehicle class that inherits from Vehicle
# Step 4: Add constructor to ElectricVehicle class
# ===============================================================================
# Explanation:
# The ElectricVehicle constructor needs to accept make, model, year, and battery_capacity.
# We use super().__init__() to call the parent class constructor for the common attributes.
class Vehicle:
def __init__(self, make, model, year):
self.make = make
self.model = model
self.year = year
class ElectricVehicle(Vehicle):
def __init__(self, make, model, year, battery_capacity):
super().__init__(make, model, year) # Call parent constructor
self.battery_capacity = battery_capacity # Add new attribute
# What we accomplished in this step:
# - Added ElectricVehicle constructor that uses super() to inherit Vehicle attributes
# - Added battery_capacity attribute specific to ElectricVehicle
# Step 5: Add the charge method
# ===============================================================================
# Explanation:
# Now let's add the charge method that is specific to electric vehicles. This method
# will print information about the charging process.
class Vehicle:
def __init__(self, make, model, year):
self.make = make
self.model = model
self.year = year
class ElectricVehicle(Vehicle):
def __init__(self, make, model, year, battery_capacity):
super().__init__(make, model, year)
self.battery_capacity = battery_capacity
def charge(self):
print(f"Charging {self.make} {self.model} with {self.battery_capacity} kWh battery")
# What we accomplished in this step:
# - Added charge method specific to ElectricVehicle class
# Step 6: Create instances and test our classes
# ===============================================================================
# Explanation:
# Finally, let's create instances of our classes and test them to make sure everything works correctly.
# This demonstrates inheritance and how subclasses can add specialized functionality.
class Vehicle:
def __init__(self, make, model, year):
self.make = make
self.model = model
self.year = year
class ElectricVehicle(Vehicle):
def __init__(self, make, model, year, battery_capacity):
super().__init__(make, model, year)
self.battery_capacity = battery_capacity
def charge(self):
print(f"Charging {self.make} {self.model} with {self.battery_capacity} kWh battery")
# Test our classes:
# Create a regular vehicle
regular_car = Vehicle("Toyota", "Camry", 2025)
print(f"Regular vehicle: {regular_car.year} {regular_car.make} {regular_car.model}")
# Create an electric vehicle
ev = ElectricVehicle("Tesla", "Model S", 2025, 100)
print(f"Electric vehicle: {ev.year} {ev.make} {ev.model}")
print(f"Battery capacity: {ev.battery_capacity} kWh")
# Test the charge method
ev.charge()
# What we accomplished in this step:
# - Created and tested our complete Vehicle and ElectricVehicle implementation
# - Demonstrated inheritance and specialized functionality
# ===============================================================================
# CONGRATULATIONS!
#
# You've successfully completed the step-by-step solution!
#
# Key concepts learned:
# - Class inheritance and the super() function
# - Adding specialized attributes in subclasses
# - Adding specialized methods in subclasses
# - How electric vehicles extend regular vehicle functionality
#
# 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 HybridVehicle or Motorcycle classes!)
#
# Remember: The best way to learn is by doing!
# ===============================================================================