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