Concept Flow - Polymorphism through functions
Define function with parameter obj
Call method on obj
Python finds method in obj's class
Execute method specific to obj's class
Return result
Function output varies by obj type
The function calls a method on any object passed in. Python runs the version of the method that belongs to the object's class, allowing different behaviors.
