In this lesson, we will learn about the interaction between properties and other objects. This is where methods come into play. There are three types of methods in Python:
instance methods
class methods
static methods
We will be discussing instance methods in this lesson since they are used the most in Python OOP.
Note: We will be using the term methods for instance methods since they are most commonly used. Class methods and static methods will be named explicitly as they are.