# EmployeeHierarchy Example # Illustrate how inheritance works: # Person < Employee < Executive # An Executive is an Employee with a bonus. class Person: def __init__(self, the_name, the_gender, the_age): self.name = the_name self.gender = the_gender self.age = the_age def __str__(self): return f"{self.name} { self.gender} {self.age}"