To add a getter method to a subclass in python, you can simply define a method that returns the value of the attribute you want to access. Here's an example:
main.py332 chars16 lines
In this example, we have a Vehicle
class and a Car
subclass that inherits from it. We've added make
and model
attributes to the Car
subclass, and defined getter methods get_make
and get_model
to access them.
You can now create a Car
object and use the getter methods to access its make
and model
attributes:
main.py93 chars4 lines
Output:
main.py15 chars3 lines
gistlibby LogSnag