Methods

How do you define a method?

After defining a class, you can add methods that allow you to take actions using the class.

How do you make an instance of a class?

Each method is automatically sent a reference to the instance of the class, so each method needs a self parameter, then the method can use any attribute from the class.