Exercise: Overriding Inherited Method
Learn how to override inherited methods in Python classes by modifying the greet method in a subclass. This exercise helps you understand inheritance and method overriding concepts to customize behavior in object-oriented programming.
We'll cover the following...
We'll cover the following...
Problem statement
You have been provided with a Person class with the variables name and age and a greet method. The greet method of the Person class is simply printing Hello for now.
You have also been provided a Customer class that inherits the ...