Python - Methods and Behavior Definition
Find the error in this code:
class Car:
def __init__(self, model):
self.model = model
def show_model():
print(f"Model: {self.model}")
car = Car('Tesla')
car.show_model()