Program skeleton 1
Based on the classes and methods we have identified we can add empty class and method definitions above our specification code. This is sometimes called stubbing out the methods:

Notes:
- Note the use of the
passstatement as a placeholder. - Remember that the
__init__methods are required and will contain the code necessary to construct an object of each type.