My 1st and 2nd OOP class definitions (aka What is an OOP class definition?)
WHAT IS OOPS? Wiki = Object-oriented programming Google = object oriented programming Reddit = object oriented programming YouTube = object oriented programming in python The underlying ideas for both my 1st and second OOP projects are explained ( here ). I successfully implemented the loop tracker first and my second project will be the Abbreviation Xpander (class AbbvXpander():) The Metaphor / Model Problem re "Classes" Online tutorials use many different metaphors or models for explaining what a "class" is within the realm of OOP. Here we imagine a small scale construction compa n y that specializes in building family homes based on floor plans depicted in blueprints. This hypothetical construction company will have a constructor crew that actually builds each "instance" of its repertoire of family homes (e.g., 1 story, 2 story, basic, luxury, etc.). In Python, the work done by this "constructor" crew is defined by the __init__() fun...