# 3 imports needed because class: Flyer, Person, Airplane defined in another module/file. from Flyer import Flyer from Person import Person from Airplane import Airplane # Author: James Tam # Version: June 9, 2025 # Learning: illustrating that child objects inherit all methods of the parent class. def start(): aFlyer = Flyer() aFlyer.fly() aPlane = Airplane() aPlane.refuel() aPlane.fly() aPerson = Person() aPerson.doPersonStuff() #aPerson.fly() #Error a Person object does not have the ability to fly start()