class Car:
def __init__(self, model_name, color, seats, serial_number):
self.model_name = model_name
self.color = color
self.seats = seats
self.serial_number = serial_number
def drive(self):
return("Vroom, vroom!")
#these aren't actual vehicle serial numbers but whatever
car_instance_1 = Car("Toyota Camry", "gray", 5, "0123456")
car_instance_2 = Car("Audi A4", "red", 5, "6543210")
car_instance_3 = Car("Ford Mustang", "yellow", 2, "3456210")
print(car_instance_1.model_name)
print(car_instance_2.seats)
print(car_instance_2.drive())
hello_world = "Hello World!"