Overriding Parent Class Methods

How does a child class modify the behavior of a method from the parent class?

A child class can customize the behavior of a parent class methods by using super() to access those methods.