Making Instances

How do you make an instance of a class?

You provide the class name and include any arguments the __init__() method requires.

How do you access the value of an attribute through an instance?

You assign the instance to a variable to access the value of an attribute through an instance.

How do you use an instance to call methods?

You use dot notation to call methods using an instance.