Python - Constructors and Object Initialization
What will be the output of this code?
class Car:
def __init__(self, model):
self.model = model
car1 = Car('Tesla')
print(car1.model)