new_car = Car(model = Tesla, color = green)
class Car:
def __init__(self, model, color): # Этот метод выполняется при создании объекта, в него передаются все аргументы
self.model = model
self.color = color
print('The model is %s, color is %s' % (self.model, self.color))