================================== Be-A-Computer: Classes and Objects ================================== The purpose of these problems is to allow you to test your understanding of classes and objects. They should not take more than an hour to complete. You should do these warm-up exercises by hand. We provide files that will allow you to check your answers. To get started, run ``git pull upstream master`` to make sure you have the latest files. You can check your answers by running the Python program ``classes.py`` in ``pp/bac/`` Warm-up exercise: This warm-up exercise uses the following constants and data: .. literalinclude:: bac/classes.py :lines: 1-13 What is the output of the following code? .. literalinclude:: bac/classes.py :lines: 15-73