About Classes

What is a class?

A class organizes code that combines data and actions.

What is an attribute?

An attribute is a variable associated with a class.

What is a method?

A method is a function associated with a class

How do you define a class?

To define a class, you make an instance of the class. When an instance of a class is made, the __init__() method runs automatically.