Python - Classes and Object Lifecycle
Find the error in this code:
class Car:
def __init__(self, model):
model = model
car = Car("Tesla")
print(car.model)