Define a class using the `class` keyword
Create an instance by calling the class name with parentheses
Assign the instance to a variable
Use the object to access attributes and methods with dot notation
Example: `class Car: pass`
Example: `my_car = Car()`
