Also, we can define a special method named __init__()
that's called when we create an instance of a class.
class Car:
wheels = 4
def __init__(self):
self.running = False
def start_engine(self):
self.running = True
print("Vroom!")
my_car = Car()