Python - Object-Oriented Programming Foundations
Find the error in this code:
class Car:
def __init__(self, model):
model = model
c = Car('Tesla')
print(c.model)